From cc4f6f9af59391725d49998bd34fcfe780ee8314 Mon Sep 17 00:00:00 2001 From: JuliaZel Date: Wed, 28 Feb 2024 20:10:18 -0500 Subject: [PATCH] mess with navbar styling --- src/components/Navbar.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index fc3dee97..f4b0e219 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -8,7 +8,9 @@ import { useAuth } from "@hooks"; const Navbar = () => { const [dropdownVisible, setDropdownVisible] = useState(false); const handleMenuClick: React.MouseEventHandler = () => { - setDropdownVisible((visible) => !visible); + setDropdownVisible((visible) + + => !visible); }; const { status, onSignIn } = useAuth(); @@ -16,6 +18,10 @@ const Navbar = () => {