Skip to content

Commit

Permalink
refactor: add autocomplete off
Browse files Browse the repository at this point in the history
  • Loading branch information
nzambello committed Mar 18, 2021
1 parent 1b3fb8f commit 5147c5f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/FormView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ const FormView = ({
</Button>
</Message>
) : (
<Form loading={formState.loading} onSubmit={onSubmit} method="post">
<Form
loading={formState.loading}
onSubmit={onSubmit}
autoComplete="off"
method="post"
>
<Grid columns={1} padded="vertically">
{data.static_fields?.map((field) => (
<Grid.Row key={field.field_id}>
Expand Down

0 comments on commit 5147c5f

Please sign in to comment.