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 ? ( - + + + ) : ( )}