diff --git a/src/frontend/src/App.tsx b/src/frontend/src/App.tsx index fb0e9f2d4..50cbffdf8 100644 --- a/src/frontend/src/App.tsx +++ b/src/frontend/src/App.tsx @@ -48,6 +48,7 @@ export default function App() { const isLoginPage = location.pathname.includes("login"); const isAdminPage = location.pathname.includes("admin"); + const isSignUpPage = location.pathname.includes("signup"); // Use effect hook to update alertsList when a new alert is added useEffect(() => { @@ -136,7 +137,7 @@ export default function App() { }} FallbackComponent={CrashErrorComponent} > - {!isLoginPage &&
} + {!isLoginPage && !isSignUpPage &&
}