Skip to content

Commit

Permalink
Merge pull request #53 from sparrowapp-dev/fix/fixed-username-length-…
Browse files Browse the repository at this point in the history
…login-issue

Fix: Fixed the user first and last name  length causing login issue
  • Loading branch information
itsmdasifraza authored Jul 15, 2024
2 parents b9ca32f + 2dc67de commit fdf9538
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pages/Auth/register-page/RegisterPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
autocapitalize="none"
autocomplete="off"
id="name"
maxlength="50"
bind:value={userData.firstName}
on:blur={async () => {
isFirstNameTouched = true;
Expand Down Expand Up @@ -259,6 +260,7 @@
autocapitalize="none"
autocomplete="off"
id="lastname"
maxlength="50"
bind:value={userData.lastName}
on:blur={async () => {
isLastNameTouched = true;
Expand Down

0 comments on commit fdf9538

Please sign in to comment.