Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Joseph-Kim committed Feb 27, 2025
1 parent 79abcf5 commit 9d6cc08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/components/AuthForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const AuthForm = ({ additionalButton, buttonLabel, errorMessage, isSignUp = fals
minLength: { value: 4, message: "Username must be at least 4 characters!" },
maxLength: { value: 12, message: "Username must be 12 characters or fewer!" },
})}
placeholder="Username or email"
placeholder={isSignUp ? "Username" : "Username or email"}
className="h-12 p-4"
/>
</StyledFormField>
Expand Down

0 comments on commit 9d6cc08

Please sign in to comment.