Skip to content

Commit

Permalink
Merge pull request #20 from Dthompsondevtestaccount/patch-4
Browse files Browse the repository at this point in the history
Update navbar.tsx
  • Loading branch information
TheDThompsonDev authored Mar 5, 2024
2 parents be77341 + 16f45a5 commit 06202b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ interface NavbarProps {

export default function Navbar({ label }: NavbarProps) {
const [isNavVisible, setIsNavVisible] = useState(false);
const isMobile = false
const isMobile = false;

const toggleNav = () => {
setIsNavVisible(!isNavVisible);
};
Expand Down

0 comments on commit 06202b8

Please sign in to comment.