Skip to content

Commit

Permalink
fix: Firefox autocompleting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dogukanoksuz committed Aug 13, 2024
1 parent db43c46 commit 7b97f0b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/ui/user-auth-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ export function UserAuthForm({ className, ...props }: UserAuthFormProps) {
<Input
id="name"
placeholder="[email protected]"
autoComplete="new-password"
{...field}
/>
<FormMessage />
Expand All @@ -345,6 +346,7 @@ export function UserAuthForm({ className, ...props }: UserAuthFormProps) {
id="password"
placeholder="••••••••••"
type="password"
autoComplete="new-password"
{...field}
/>
<FormMessage />
Expand Down

0 comments on commit 7b97f0b

Please sign in to comment.