Skip to content

Commit

Permalink
web: (wip) new sidebar
Browse files Browse the repository at this point in the history
Signed-off-by: 01zulfi <[email protected]>
  • Loading branch information
01zulfi committed Dec 24, 2024
1 parent c6e5f87 commit 0f677f7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions apps/web/src/components/navigation-menu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,6 @@ function NavigationMenu(props: NavigationMenuProps) {
const totalTrash = (await db.trash.all()).length;
const totalMonographs = await db.monographs.all.count();

console.log("totalNotes", totalNotes);
console.log("totalFavorites", totalFavorites);
console.log("totalReminders", totalReminders);
setRoutes((routes) => {
return routes.map((route) => {
switch (route.id) {
Expand Down Expand Up @@ -774,7 +771,7 @@ type ReorderableListProps<T> = {
order: () => string[];
};

export function ReorderableList<T extends { id: string }>(
function ReorderableList<T extends { id: string }>(
props: ReorderableListProps<T>
) {
const {
Expand Down

0 comments on commit 0f677f7

Please sign in to comment.