feat(scene.js): streamlined import statements
Removed unused "getCategory" import from the "scene.js" file to clean up the code and improve maintainability. This change simplifies the codebase by eliminating unnecessary imports, thus enhancing readability and potentially reducing the bundle size slightly, assuming there are no other references to "getCategory" that would keep it in the final bundle. This adjustment forms part of an ongoing effort to optimize and streamline the codebase.
This commit is contained in:
parent
85c44f985d
commit
06fb7ac04e
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
import { getScene, getCategory } from "./api";
|
||||
import { getScene } from "./api";
|
||||
import { loadSidebar } from "./scene/sidebar";
|
||||
import { loadNavbar } from "./scene/navbar";
|
||||
|
||||
|
|
Loading…
Reference in a new issue