Unverified Commit c0826c43 authored by Mykal Machon's avatar Mykal Machon Committed by GitHub

fix: explicitly disabling `autocapitalize` and `spellcheck` (#3797)

fix #3747: removing autocapitalize and spellcheck
parent 724db203
...@@ -128,6 +128,9 @@ const SignIn = () => { ...@@ -128,6 +128,9 @@ const SignIn = () => {
readOnly={actionBtnLoadingState.isLoading} readOnly={actionBtnLoadingState.isLoading}
placeholder={t("common.username")} placeholder={t("common.username")}
value={username} value={username}
autoComplete="username"
autoCapitalize="off"
spellCheck={false}
onChange={handleUsernameInputChanged} onChange={handleUsernameInputChanged}
required required
/> />
...@@ -141,6 +144,9 @@ const SignIn = () => { ...@@ -141,6 +144,9 @@ const SignIn = () => {
readOnly={actionBtnLoadingState.isLoading} readOnly={actionBtnLoadingState.isLoading}
placeholder={t("common.password")} placeholder={t("common.password")}
value={password} value={password}
autoComplete="password"
autoCapitalize="off"
spellCheck={false}
onChange={handlePasswordInputChanged} onChange={handlePasswordInputChanged}
required required
/> />
......
...@@ -93,6 +93,9 @@ const SignUp = () => { ...@@ -93,6 +93,9 @@ const SignUp = () => {
readOnly={actionBtnLoadingState.isLoading} readOnly={actionBtnLoadingState.isLoading}
placeholder={t("common.username")} placeholder={t("common.username")}
value={username} value={username}
autoComplete="username"
autoCapitalize="off"
spellCheck={false}
onChange={handleUsernameInputChanged} onChange={handleUsernameInputChanged}
required required
/> />
...@@ -106,6 +109,9 @@ const SignUp = () => { ...@@ -106,6 +109,9 @@ const SignUp = () => {
readOnly={actionBtnLoadingState.isLoading} readOnly={actionBtnLoadingState.isLoading}
placeholder={t("common.password")} placeholder={t("common.password")}
value={password} value={password}
autoComplete="password"
autoCapitalize="off"
spellCheck={false}
onChange={handlePasswordInputChanged} onChange={handlePasswordInputChanged}
required required
/> />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment