From ae1136075e2bff2ee299848e8e599e63bad35d66 Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Mon, 5 Jun 2023 11:29:38 +0200 Subject: [PATCH] feat: autocomplete off on login password (#3901) --- frontend/src/component/user/PasswordAuth.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/user/PasswordAuth.tsx b/frontend/src/component/user/PasswordAuth.tsx index 55656f26a4..74ec46a59f 100644 --- a/frontend/src/component/user/PasswordAuth.tsx +++ b/frontend/src/component/user/PasswordAuth.tsx @@ -135,7 +135,7 @@ const PasswordAuth: VFC = ({ authDetails, redirect }) => { value={password} error={Boolean(passwordError)} helperText={passwordError} - autoComplete="current-password" + autoComplete="off" data-testid={LOGIN_PASSWORD_ID} />