Merge be43b996e1c8122f9ccd0451254578049a9771e5 into 9bb933c0d67e90c22a58f96f067ca37f70c27bca

This commit is contained in:
Buck DeFore 2025-11-07 19:43:47 -05:00 committed by GitHub
commit 338f5c3d6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -101,8 +101,13 @@ const renderInput = ({
}) => (
<TextField
error={!!(touched && error)}
inputProps={{
// mobile keyboards: suppress capitalization and correction for login related fields
autocapitalize: 'none',
autocorrect: 'off',
...inputProps,
}}
helperText={touched && error}
{...inputProps}
{...props}
fullWidth
/>