From e8c467c3a2c6c453df05aca8f41b2f9edf85c7d2 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Tue, 1 Jul 2025 22:26:18 -0400 Subject: [PATCH] chore: remove bio from signups --- apps/web/app/auth/signup/InviteOnlySignUp.tsx | 10 +++++----- apps/web/app/auth/signup/OpenSignup.tsx | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/apps/web/app/auth/signup/InviteOnlySignUp.tsx b/apps/web/app/auth/signup/InviteOnlySignUp.tsx index af88a5a6..12169dba 100644 --- a/apps/web/app/auth/signup/InviteOnlySignUp.tsx +++ b/apps/web/app/auth/signup/InviteOnlySignUp.tsx @@ -38,9 +38,9 @@ const validate = (values: any) => { errors.username = 'Username must be at least 4 characters' } - if (!values.bio) { - errors.bio = 'Required' - } + // if (!values.bio) { + // errors.bio = 'Required' + // } return errors } @@ -163,7 +163,7 @@ function InviteOnlySignUpComponent(props: InviteOnlySignUpProps) { {/* for bio */} - + {/* @@ -173,7 +173,7 @@ function InviteOnlySignUpComponent(props: InviteOnlySignUpProps) { required /> - + */}
diff --git a/apps/web/app/auth/signup/OpenSignup.tsx b/apps/web/app/auth/signup/OpenSignup.tsx index 8bcbf404..61729049 100644 --- a/apps/web/app/auth/signup/OpenSignup.tsx +++ b/apps/web/app/auth/signup/OpenSignup.tsx @@ -38,9 +38,9 @@ const validate = (values: any) => { errors.username = 'Username must be at least 4 characters' } - if (!values.bio) { - errors.bio = 'Required' - } + // if (!values.bio) { + // errors.bio = 'Required' + // } return errors } @@ -157,7 +157,7 @@ function OpenSignUpComponent() { {/* for bio */} - + {/* @@ -167,7 +167,7 @@ function OpenSignUpComponent() { required /> - + */}