Skip to content

Commit

Permalink
fix(app-signup): update maxLength of names
Browse files Browse the repository at this point in the history
  • Loading branch information
rams23 committed Feb 26, 2021
1 parent cf0b3ba commit 9621185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/game-app/src/signup/components/Signup/Signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const Signup: React.FC<Props> = () => {
label={t('signup.form.firstName.label')}
placeholder={t('signup.form.firstName.placeholder')}
autoComplete="given-name"
maxLength={100}
maxLength={99}
/>
</Box>
<Box flex={1} ml={3}>
Expand All @@ -86,7 +86,7 @@ const Signup: React.FC<Props> = () => {
label={t('signup.form.lastName.label')}
placeholder={t('signup.form.lastName.placeholder')}
autoComplete="family-name"
maxLength={100}
maxLength={99}
/>
</Box>
</Box>
Expand Down

0 comments on commit 9621185

Please sign in to comment.