Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
fix(views/SignIn): add missing autocomplete username (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbolel authored Aug 11, 2023
1 parent 6045294 commit 627025c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/SignIn/SignIn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,14 @@ const SignIn = () => {
component="form"
id="login-form"
role="form"
autoComplete="off"
onSubmit={handleSubmit}
spacing={3}
>
<InputFormControl<FormData>
control={control}
name="email"
InputProps={{
autoComplete: 'username',
placeholder: '[email protected]',
}}
/>
Expand Down

0 comments on commit 627025c

Please sign in to comment.