diff --git a/apps/web/src/apps/main/layouts/module.layout.tsx b/apps/web/src/apps/main/layouts/module.layout.tsx
index a54d867..666c814 100644
--- a/apps/web/src/apps/main/layouts/module.layout.tsx
+++ b/apps/web/src/apps/main/layouts/module.layout.tsx
@@ -25,6 +25,7 @@ registerModuleNamespace('history', { en: historyEn, id: historyId });
registerModuleNamespace('bookmark', { en: bookmarkEn, id: bookmarkId });
export default function ModuleLayout({ children }: { children: React.ReactNode }) {
+ // FIXME: To disable the history tracker, simply comment out or remove the following line:
useHistoryTracker();
const configAppShell: CoreAppShellConfig = {
@@ -47,12 +48,30 @@ export default function ModuleLayout({ children }: { children: React.ReactNode }
config={configAppShell}
slots={{
header: ,
- sidebar: ,
- sidebarMobile: ,
+ sidebar: (
+
+ ),
+ sidebarMobile: (
+
+ ),
}}
>
{children}
+ {/* FIXME: To hide the history drawer, comment out or remove the HistoryDrawer component below */}
+ {/* FIXME: To hide the bookmark drawer, comment out or remove the BookmarkDrawer component below */}