Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
RealFascinated committed Mar 8, 2025
1 parent e9c6433 commit 5cb9311
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/auth/account-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export default function AccountForm({ type }: AccountFormProps) {
setError(undefined);
}}
>
Don't have an account? Register
Don't have an account? Register
</Button>
</div>
</form>
Expand Down Expand Up @@ -230,7 +230,7 @@ export default function AccountForm({ type }: AccountFormProps) {
type="text"
autoComplete="username"
{...field}
onChange={event => {
onChange={(event) => {
event.target.value =
event.target.value.toLowerCase();
field.onChange(event);
Expand Down

0 comments on commit 5cb9311

Please sign in to comment.