Skip to content

Commit

Permalink
refactor: Disable auto-complete for the new user form (#4933)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoQuaresma committed Nov 8, 2022
1 parent 2af698c commit f6130e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/src/components/CreateUserForm/CreateUserForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const CreateUserForm: FC<

return (
<FullPageForm title="Create user" onCancel={onCancel}>
<form onSubmit={form.handleSubmit}>
<form onSubmit={form.handleSubmit} autoComplete="off">
<Stack spacing={1}>
<TextField
{...getFieldHelpers("username")}
Expand Down

0 comments on commit f6130e2

Please sign in to comment.