diff --git a/components/Navigation.tsx b/components/Navigation.tsx index 684cae1..7ab59bd 100644 --- a/components/Navigation.tsx +++ b/components/Navigation.tsx @@ -41,12 +41,10 @@ export default function (props: { email?: string; hide?: boolean; id?: string; - mobile?: string; permissions?: number; username?: string; }) { let data = { ...props }; - const isDesktop = props.mobile === "?0"; const { isOpen, onClose, onOpen } = useDisclosure(); return ( @@ -56,7 +54,8 @@ export default function (props: {