From fe9e563da7def7f2a16947eaaa2d09edd93fb5b1 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Fri, 18 Apr 2025 16:54:57 -0700 Subject: [PATCH] Hide menu when clicking nav --- frontend/src/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index f1b28dc..72223f3 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -853,6 +853,7 @@ const App = () => { const handleTabChange = (event: React.SyntheticEvent, newValue: number) => { setTab(newValue); + handleMenuClose(); };