diff --git a/src/app/components/SideNavigation.tsx b/src/app/components/SideNavigation.tsx index 3afe89fc..994d00bf 100644 --- a/src/app/components/SideNavigation.tsx +++ b/src/app/components/SideNavigation.tsx @@ -8,8 +8,7 @@ import settingsIcon from "~/app/assets/settings.json"; import ReactiveButton from "~/app/components/ReactiveButton"; import UserMenu from "~/app/components/UserMenu"; - -import { useWorkspace } from "~/app/providers/workspace"; +import WorkspaceMenu from "~/app/components/WorkspaceMenu"; interface SideNavigationProps { user: UserType; @@ -22,7 +21,6 @@ interface UserType { export default function SideNavigation({ user }: SideNavigationProps) { const pathname = usePathname(); - const { workspace } = useWorkspace(); const navigation = [ { name: "Boards", href: "/boards", icon: boardsIcon }, @@ -35,19 +33,10 @@ export default function SideNavigation({ user }: SideNavigationProps) { ]; return ( -