removed unused property from NavBar

This commit is contained in:
Anton Tranelis 2025-02-19 18:31:17 +00:00
parent a8269b0a48
commit 01f5d40139

View File

@ -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<Item>({} as Item)