Skip to content

Commit

Permalink
fix: remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
zant committed Nov 6, 2024
1 parent c07d52c commit 38b4f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layout/AppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 38b4f88

Please sign in to comment.