From 06fb7ac04e0e1dc1992d434cb26fcc90f3f0c602 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sat, 16 Mar 2024 11:21:44 +0100 Subject: [PATCH] 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. --- assets/js/scene.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/scene.js b/assets/js/scene.js index ab63817..2ff5fbe 100644 --- a/assets/js/scene.js +++ b/assets/js/scene.js @@ -1,4 +1,4 @@ -import { getScene, getCategory } from "./api"; +import { getScene } from "./api"; import { loadSidebar } from "./scene/sidebar"; import { loadNavbar } from "./scene/navbar";