Browse Source

Add username registration to InvitedForm

Shun Miyazawa 4 months ago
parent
commit
3760abe604
1 changed files with 1 additions and 0 deletions
  1. 1 0
      apps/app/src/client/components/InvitedForm.tsx

+ 1 - 0
apps/app/src/client/components/InvitedForm.tsx

@@ -111,6 +111,7 @@ export const InvitedForm = (props: InvitedFormProps): JSX.Element => {
             type="text"
             className="form-control"
             placeholder={t('User ID')}
+            {...register('username', { required: true })}
             required
           />
         </div>