From 01f5d40139e73a0241cf297475d6d171cc3d6b3d Mon Sep 17 00:00:00 2001 From: Anton Tranelis Date: Wed, 19 Feb 2025 18:31:17 +0000 Subject: [PATCH] removed unused property from NavBar --- src/Components/AppShell/NavBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/AppShell/NavBar.tsx b/src/Components/AppShell/NavBar.tsx index 2b1d1b36..4c038d25 100644 --- a/src/Components/AppShell/NavBar.tsx +++ b/src/Components/AppShell/NavBar.tsx @@ -8,7 +8,7 @@ import { useItems } from '#components/Map/hooks/useItems' import type { Item } from '#types/Item' -export default function NavBar({ appName, userType }: { appName: string; userType: string }) { +export default function NavBar({ appName }: { appName: string }) { const { isAuthenticated, user, logout } = useAuth() const [userProfile, setUserProfile] = useState({} as Item)