From 38b4f881d4fcbfc9f971f4255b40c32ed9842d95 Mon Sep 17 00:00:00 2001 From: zant Date: Wed, 6 Nov 2024 19:11:13 +0100 Subject: [PATCH] fix: remove unused --- src/layout/AppBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/AppBar.tsx b/src/layout/AppBar.tsx index efc9fa0..cc11efc 100644 --- a/src/layout/AppBar.tsx +++ b/src/layout/AppBar.tsx @@ -65,7 +65,7 @@ export function AppBar({ auth = false, signUp = false, logout }: AppBarProps) { const matches = useMediaQuery('(min-width:600px)'); const [mobileOpen, setMobileOpen] = React.useState(false); - const [isClosing, setIsClosing] = React.useState(false); + const [, setIsClosing] = React.useState(false); const handleDrawerClose = () => { setIsClosing(true);