fix: turn off autoComplete for some inputs

This commit is contained in:
Tobias Barsnes
2024-12-25 03:23:02 +01:00
parent e035062a10
commit d8dbdb2b9e
4 changed files with 19 additions and 12 deletions

View File

@@ -471,6 +471,7 @@ export const AddDatabase = ({ projectId, projectName }: Props) => {
<FormControl>
<Input
placeholder={`Default ${databasesUserDefaultPlaceholder[type]}`}
autoComplete="off"
{...field}
/>
</FormControl>
@@ -491,6 +492,7 @@ export const AddDatabase = ({ projectId, projectName }: Props) => {
<Input
type="password"
placeholder="******************"
autoComplete="off"
{...field}
/>
</FormControl>