chore: disable spellcheck on input fields

This commit is contained in:
Mo
2023-04-03 09:01:44 -05:00
parent 36d136a4d1
commit 031b0a496f
4 changed files with 8 additions and 2 deletions

View File

@@ -131,6 +131,7 @@ const CreateAccount: FunctionComponent<Props> = ({
ref={emailInputRef}
type="email"
value={email}
spellcheck={false}
/>
<DecoratedPasswordInput
className={{ container: 'mb-2' }}

View File

@@ -210,6 +210,7 @@ const SignInPane: FunctionComponent<Props> = ({ application, viewControllerManag
onKeyDown={handleKeyDown}
disabled={isSigningIn || isPrivateUsername}
ref={emailInputRef}
spellcheck={false}
/>
<DecoratedPasswordInput
className={{ container: `mb-2 ${error ? 'border-danger' : null}` }}