From 83489535101850d8c636f046ebbacd35c2b474ce Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Fri, 30 Jan 2026 23:58:19 +0100 Subject: [PATCH] Hide nav bar while signing up --- web/pages/signup.tsx | 45 ++++++++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/web/pages/signup.tsx b/web/pages/signup.tsx index 3df4548..640d7b9 100644 --- a/web/pages/signup.tsx +++ b/web/pages/signup.tsx @@ -13,8 +13,6 @@ import {safeLocalStorage} from 'web/lib/util/local' import {removeNullOrUndefinedProps} from 'common/util/object' import {useProfileByUserId} from 'web/hooks/use-profile' import {ProfileWithoutUser} from 'common/profiles/profile' -import {PageBase} from "web/components/page-base"; -import {SEO} from "web/components/SEO"; import {useLocale, useT} from 'web/lib/locale' export default function SignupPage() { @@ -77,23 +75,23 @@ export default function SignupPage() { } }, [existingProfile]) - if (step === 1 && user) { - return - - - - - - } + // if (step === 1 && user) { + // return + // + // + // + // + // + // } if (user === null && !holdLoading) { console.log('user === null && !holdLoading') @@ -143,7 +141,14 @@ export default function SignupPage() { }} /> ) : step === 1 ? ( - + + + ) : ( )}