Restore autocomplete in some cases

This commit is contained in:
Alex Gleason 2022-07-20 12:41:39 -05:00
parent f6fcbc80af
commit 287429d651
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 0 additions and 3 deletions

View file

@ -37,7 +37,6 @@ const LoginForm: React.FC<ILoginForm> = ({ isLoading, handleSubmit }) => {
placeholder={intl.formatMessage(messages.username)} placeholder={intl.formatMessage(messages.username)}
type='text' type='text'
name='username' name='username'
autoComplete='off'
autoCorrect='off' autoCorrect='off'
autoCapitalize='off' autoCapitalize='off'
required required

View file

@ -51,7 +51,6 @@ const ExternalLoginForm: React.FC = () => {
type='text' type='text'
name='host' name='host'
onChange={handleHostChange} onChange={handleHostChange}
autoComplete='off'
autoCorrect='off' autoCorrect='off'
autoCapitalize='off' autoCapitalize='off'
required required

View file

@ -132,7 +132,6 @@ const Header = () => {
type='text' type='text'
placeholder={intl.formatMessage(messages.username)} placeholder={intl.formatMessage(messages.username)}
className='max-w-[200px]' className='max-w-[200px]'
autoComplete='off'
autoCorrect='off' autoCorrect='off'
autoCapitalize='off' autoCapitalize='off'
/> />