diff --git a/src/auth/components/LoginPage/LoginPage.tsx b/src/auth/components/LoginPage/LoginPage.tsx index 8a517d812..a202cd00e 100644 --- a/src/auth/components/LoginPage/LoginPage.tsx +++ b/src/auth/components/LoginPage/LoginPage.tsx @@ -77,6 +77,7 @@ const LoginCard: React.FC = props => { value={data.email} inputProps={{ "data-test-id": "email", + spellCheck: false, }} disabled={disabled} /> @@ -95,6 +96,7 @@ const LoginCard: React.FC = props => { value={data.password} inputProps={{ "data-test-id": "password", + spellCheck: false, }} disabled={disabled} /> diff --git a/src/auth/components/NewPasswordPage/NewPasswordPage.tsx b/src/auth/components/NewPasswordPage/NewPasswordPage.tsx index ceecc500f..c135aa4b5 100644 --- a/src/auth/components/NewPasswordPage/NewPasswordPage.tsx +++ b/src/auth/components/NewPasswordPage/NewPasswordPage.tsx @@ -76,6 +76,7 @@ const NewPasswordPage: React.FC = props => { value={data.password} inputProps={{ "data-test-id": "password", + spellCheck: false, }} required /> @@ -102,6 +103,7 @@ const NewPasswordPage: React.FC = props => { } inputProps={{ "data-test-id": "confirm-password", + spellCheck: false, }} required /> diff --git a/src/auth/components/ResetPasswordPage/ResetPasswordPage.tsx b/src/auth/components/ResetPasswordPage/ResetPasswordPage.tsx index df9664763..10b6822e2 100644 --- a/src/auth/components/ResetPasswordPage/ResetPasswordPage.tsx +++ b/src/auth/components/ResetPasswordPage/ResetPasswordPage.tsx @@ -61,6 +61,7 @@ const ResetPasswordPage: React.FC = props => { value={data.email} inputProps={{ "data-test-id": "email", + spellCheck: false, }} /> diff --git a/src/components/AddressEdit/AddressEdit.tsx b/src/components/AddressEdit/AddressEdit.tsx index 7b0195f15..15af2b550 100644 --- a/src/components/AddressEdit/AddressEdit.tsx +++ b/src/components/AddressEdit/AddressEdit.tsx @@ -96,6 +96,7 @@ const AddressEdit: React.FC = props => { // Setting 'autoComplete: "new-password"' is the only way to // disable Chrome's autofill on forms as of early 2022 autoComplete: "new-password", + spellCheck: false, }} /> @@ -111,6 +112,7 @@ const AddressEdit: React.FC = props => { fullWidth InputProps={{ autoComplete: "new-password", + spellCheck: false, }} /> @@ -132,6 +134,7 @@ const AddressEdit: React.FC = props => { fullWidth InputProps={{ autoComplete: "new-password", + spellCheck: false, }} /> @@ -150,6 +153,7 @@ const AddressEdit: React.FC = props => { onChange={onChange} InputProps={{ autoComplete: "new-password", + spellCheck: false, }} /> @@ -169,6 +173,7 @@ const AddressEdit: React.FC = props => { fullWidth InputProps={{ autoComplete: "new-password", + spellCheck: false, }} /> @@ -186,6 +191,7 @@ const AddressEdit: React.FC = props => { fullWidth InputProps={{ autoComplete: "new-password", + spellCheck: false, }} /> @@ -205,6 +211,7 @@ const AddressEdit: React.FC = props => { fullWidth InputProps={{ autoComplete: "new-password", + spellCheck: false, }} /> @@ -223,6 +230,7 @@ const AddressEdit: React.FC = props => { fullWidth InputProps={{ autoComplete: "new-password", + spellCheck: false, }} /> @@ -245,6 +253,9 @@ const AddressEdit: React.FC = props => { onChange={onCountryChange} value={data.country} choices={countries} + InputProps={{ + spellCheck: false, + }} />
@@ -262,6 +273,7 @@ const AddressEdit: React.FC = props => { fullWidth InputProps={{ autoComplete: "new-password", + spellCheck: false, }} />
diff --git a/src/components/CompanyAddressInput/CompanyAddressForm.tsx b/src/components/CompanyAddressInput/CompanyAddressForm.tsx index ca05622e9..d0e404c6c 100644 --- a/src/components/CompanyAddressInput/CompanyAddressForm.tsx +++ b/src/components/CompanyAddressInput/CompanyAddressForm.tsx @@ -95,6 +95,7 @@ const CompanyAddressForm: React.FC = props => { fullWidth InputProps={{ autoComplete: "organization", + spellCheck: false, }} /> @@ -112,6 +113,7 @@ const CompanyAddressForm: React.FC = props => { fullWidth InputProps={{ autoComplete: "address-line1", + spellCheck: false, }} /> @@ -129,6 +131,7 @@ const CompanyAddressForm: React.FC = props => { fullWidth InputProps={{ autoComplete: "address-line2", + spellCheck: false, }} /> @@ -147,6 +150,7 @@ const CompanyAddressForm: React.FC = props => { fullWidth InputProps={{ autoComplete: "address-level2", + spellCheck: false, }} /> = props => { fullWidth InputProps={{ autoComplete: "postal-code", + spellCheck: false, }} /> @@ -182,6 +187,9 @@ const CompanyAddressForm: React.FC = props => { onChange={onCountryChange} value={data.country} choices={countries} + InputProps={{ + spellCheck: false, + }} /> = props => { fullWidth InputProps={{ autoComplete: "address-level1", + spellCheck: false, }} /> @@ -215,6 +224,7 @@ const CompanyAddressForm: React.FC = props => { onChange={onChange} InputProps={{ autoComplete: "tel", + spellCheck: false, }} /> diff --git a/src/customers/components/CustomerCreateDetails/CustomerCreateDetails.tsx b/src/customers/components/CustomerCreateDetails/CustomerCreateDetails.tsx index 3fba0a373..2b0892d3b 100644 --- a/src/customers/components/CustomerCreateDetails/CustomerCreateDetails.tsx +++ b/src/customers/components/CustomerCreateDetails/CustomerCreateDetails.tsx @@ -64,6 +64,9 @@ const CustomerCreateDetails: React.FC = props => { type="text" value={data.customerFirstName} onChange={onChange} + inputProps={{ + spellCheck: false, + }} /> = props => { type="text" value={data.customerLastName} onChange={onChange} + inputProps={{ + spellCheck: false, + }} /> = props => { type="email" value={data.email} onChange={onChange} + inputProps={{ + spellCheck: false, + }} /> diff --git a/src/customers/components/CustomerInfo/CustomerInfo.tsx b/src/customers/components/CustomerInfo/CustomerInfo.tsx index d10158b95..b6436854c 100644 --- a/src/customers/components/CustomerInfo/CustomerInfo.tsx +++ b/src/customers/components/CustomerInfo/CustomerInfo.tsx @@ -70,6 +70,9 @@ const CustomerInfo: React.FC = props => { label={intl.formatMessage(commonMessages.firstName)} value={data.firstName} onChange={onChange} + inputProps={{ + spellCheck: false, + }} /> = props => { label={intl.formatMessage(commonMessages.lastName)} value={data.lastName} onChange={onChange} + inputProps={{ + spellCheck: false, + }} />
@@ -101,6 +107,9 @@ const CustomerInfo: React.FC = props => { label={intl.formatMessage(commonMessages.email)} value={data.email} onChange={onChange} + inputProps={{ + spellCheck: false, + }} /> diff --git a/src/staff/components/StaffPasswordResetDialog/StaffPasswordResetDialog.tsx b/src/staff/components/StaffPasswordResetDialog/StaffPasswordResetDialog.tsx index 9d121a1e2..c7265f022 100644 --- a/src/staff/components/StaffPasswordResetDialog/StaffPasswordResetDialog.tsx +++ b/src/staff/components/StaffPasswordResetDialog/StaffPasswordResetDialog.tsx @@ -78,6 +78,9 @@ const StaffPasswordResetDialog: React.FC = ({ name="oldPassword" type="password" onChange={change} + inputProps={{ + spellCheck: false, + }} /> = ({ name="newPassword" type="password" onChange={change} + inputProps={{ + spellCheck: false, + }} /> diff --git a/src/staff/components/StaffProperties/StaffProperties.tsx b/src/staff/components/StaffProperties/StaffProperties.tsx index a77c04e5f..8a25f2682 100644 --- a/src/staff/components/StaffProperties/StaffProperties.tsx +++ b/src/staff/components/StaffProperties/StaffProperties.tsx @@ -212,6 +212,9 @@ const StaffProperties: React.FC = props => { {...getFieldProps("firstName")} onChange={onChange} fullWidth + inputProps={{ + spellCheck: false, + }} />
@@ -219,6 +222,9 @@ const StaffProperties: React.FC = props => { {...getFieldProps("lastName")} onChange={onChange} fullWidth + inputProps={{ + spellCheck: false, + }} />
@@ -226,6 +232,9 @@ const StaffProperties: React.FC = props => { {...getFieldProps("email")} onChange={onChange} fullWidth + inputProps={{ + spellCheck: false, + }} />
diff --git a/src/storybook/__snapshots__/Stories.test.ts.snap b/src/storybook/__snapshots__/Stories.test.ts.snap index d86068c9a..b9c94addd 100644 --- a/src/storybook/__snapshots__/Stories.test.ts.snap +++ b/src/storybook/__snapshots__/Stories.test.ts.snap @@ -3215,6 +3215,7 @@ exports[`Storyshots Generics / AddressEdit default 1`] = `
@@ -36543,6 +36554,7 @@ exports[`Storyshots Views / Authentication / Log in default 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id" data-test-id="password" name="password" + spellcheck="false" type="password" value="" /> @@ -36679,6 +36691,7 @@ exports[`Storyshots Views / Authentication / Log in disabled 1`] = ` data-test-id="email" disabled="" name="email" + spellcheck="false" type="text" value="" /> @@ -36721,6 +36734,7 @@ exports[`Storyshots Views / Authentication / Log in disabled 1`] = ` data-test-id="password" disabled="" name="password" + spellcheck="false" type="password" value="" /> @@ -36864,6 +36878,7 @@ exports[`Storyshots Views / Authentication / Log in error external login 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id" data-test-id="email" name="email" + spellcheck="false" type="text" value="" /> @@ -36905,6 +36920,7 @@ exports[`Storyshots Views / Authentication / Log in error external login 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id" data-test-id="password" name="password" + spellcheck="false" type="password" value="" /> @@ -37046,6 +37062,7 @@ exports[`Storyshots Views / Authentication / Log in error login 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id" data-test-id="email" name="email" + spellcheck="false" type="text" value="" /> @@ -37087,6 +37104,7 @@ exports[`Storyshots Views / Authentication / Log in error login 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id" data-test-id="password" name="password" + spellcheck="false" type="password" value="" /> @@ -37299,6 +37317,7 @@ exports[`Storyshots Views / Authentication / Reset password default 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id" data-test-id="email" name="email" + spellcheck="false" type="text" value="" /> @@ -37416,6 +37435,7 @@ exports[`Storyshots Views / Authentication / Reset password error 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id" data-test-id="email" name="email" + spellcheck="false" type="text" value="" /> @@ -37529,6 +37549,7 @@ exports[`Storyshots Views / Authentication / Reset password loading 1`] = ` data-test-id="email" disabled="" name="email" + spellcheck="false" type="text" value="" /> @@ -37659,6 +37680,7 @@ exports[`Storyshots Views / Authentication / Set up a new password default 1`] = data-test-id="password" name="password" required="" + spellcheck="false" type="password" value="" /> @@ -37704,6 +37726,7 @@ exports[`Storyshots Views / Authentication / Set up a new password default 1`] = data-test-id="confirm-password" name="confirmPassword" required="" + spellcheck="false" type="password" value="" /> @@ -37795,6 +37818,7 @@ exports[`Storyshots Views / Authentication / Set up a new password loading 1`] = disabled="" name="password" required="" + spellcheck="false" type="password" value="" /> @@ -37841,6 +37865,7 @@ exports[`Storyshots Views / Authentication / Set up a new password loading 1`] = disabled="" name="confirmPassword" required="" + spellcheck="false" type="password" value="" /> @@ -37936,6 +37961,7 @@ exports[`Storyshots Views / Authentication / Set up a new password too short err data-test-id="password" name="password" required="" + spellcheck="false" type="password" value="" /> @@ -37981,6 +38007,7 @@ exports[`Storyshots Views / Authentication / Set up a new password too short err data-test-id="confirm-password" name="confirmPassword" required="" + spellcheck="false" type="password" value="" /> @@ -65242,6 +65269,7 @@ exports[`Storyshots Views / Customers / Create customer default 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="customerFirstName" + spellcheck="false" type="text" value="" /> @@ -65275,6 +65303,7 @@ exports[`Storyshots Views / Customers / Create customer default 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="customerLastName" + spellcheck="false" type="text" value="" /> @@ -65308,6 +65337,7 @@ exports[`Storyshots Views / Customers / Create customer default 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="" /> @@ -65373,6 +65403,7 @@ exports[`Storyshots Views / Customers / Create customer default 1`] = `
@@ -65962,6 +66003,7 @@ exports[`Storyshots Views / Customers / Create customer form errors 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="customerLastName" + spellcheck="false" type="text" value="" /> @@ -65995,6 +66037,7 @@ exports[`Storyshots Views / Customers / Create customer form errors 1`] = ` aria-invalid="true" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="" /> @@ -66065,6 +66108,7 @@ exports[`Storyshots Views / Customers / Create customer form errors 1`] = `
@@ -66711,6 +66765,7 @@ exports[`Storyshots Views / Customers / Create customer loading 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id MuiInputBase-disabled-id MuiOutlinedInput-disabled-id" disabled="" name="customerLastName" + spellcheck="false" type="text" value="" /> @@ -66745,6 +66800,7 @@ exports[`Storyshots Views / Customers / Create customer loading 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id MuiInputBase-disabled-id MuiOutlinedInput-disabled-id" disabled="" name="email" + spellcheck="false" type="email" value="" /> @@ -66810,6 +66866,7 @@ exports[`Storyshots Views / Customers / Create customer loading 1`] = `
@@ -67537,6 +67604,7 @@ exports[`Storyshots Views / Customers / Customer details default 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Cooper" /> @@ -67579,6 +67647,7 @@ exports[`Storyshots Views / Customers / Customer details default 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="elizabeth.vaughn@example.com" /> @@ -68288,6 +68357,7 @@ exports[`Storyshots Views / Customers / Customer details different addresses 1`] aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="firstName" + spellcheck="false" type="text" value="Tom" /> @@ -68321,6 +68391,7 @@ exports[`Storyshots Views / Customers / Customer details different addresses 1`] aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Cooper" /> @@ -68363,6 +68434,7 @@ exports[`Storyshots Views / Customers / Customer details different addresses 1`] aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="elizabeth.vaughn@example.com" /> @@ -69112,6 +69184,7 @@ exports[`Storyshots Views / Customers / Customer details form errors 1`] = ` aria-invalid="true" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="firstName" + spellcheck="false" type="text" value="Tom" /> @@ -69150,6 +69223,7 @@ exports[`Storyshots Views / Customers / Customer details form errors 1`] = ` aria-invalid="true" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Cooper" /> @@ -69197,6 +69271,7 @@ exports[`Storyshots Views / Customers / Customer details form errors 1`] = ` aria-invalid="true" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="elizabeth.vaughn@example.com" /> @@ -69917,6 +69992,7 @@ exports[`Storyshots Views / Customers / Customer details loading 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id MuiInputBase-disabled-id MuiOutlinedInput-disabled-id" disabled="" name="firstName" + spellcheck="false" type="text" value="" /> @@ -69951,6 +70027,7 @@ exports[`Storyshots Views / Customers / Customer details loading 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id MuiInputBase-disabled-id MuiOutlinedInput-disabled-id" disabled="" name="lastName" + spellcheck="false" type="text" value="" /> @@ -69994,6 +70071,7 @@ exports[`Storyshots Views / Customers / Customer details loading 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id MuiInputBase-disabled-id MuiOutlinedInput-disabled-id" disabled="" name="email" + spellcheck="false" type="email" value="" /> @@ -70632,6 +70710,7 @@ exports[`Storyshots Views / Customers / Customer details never logged 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="firstName" + spellcheck="false" type="text" value="Tom" /> @@ -70665,6 +70744,7 @@ exports[`Storyshots Views / Customers / Customer details never logged 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Cooper" /> @@ -70707,6 +70787,7 @@ exports[`Storyshots Views / Customers / Customer details never logged 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="elizabeth.vaughn@example.com" /> @@ -71410,6 +71491,7 @@ exports[`Storyshots Views / Customers / Customer details never placed order 1`] aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="firstName" + spellcheck="false" type="text" value="Tom" /> @@ -71443,6 +71525,7 @@ exports[`Storyshots Views / Customers / Customer details never placed order 1`] aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Cooper" /> @@ -71485,6 +71568,7 @@ exports[`Storyshots Views / Customers / Customer details never placed order 1`] aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="elizabeth.vaughn@example.com" /> @@ -72188,6 +72272,7 @@ exports[`Storyshots Views / Customers / Customer details no address at all 1`] = aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="firstName" + spellcheck="false" type="text" value="Tom" /> @@ -72221,6 +72306,7 @@ exports[`Storyshots Views / Customers / Customer details no address at all 1`] = aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Cooper" /> @@ -72263,6 +72349,7 @@ exports[`Storyshots Views / Customers / Customer details no address at all 1`] = aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="elizabeth.vaughn@example.com" /> @@ -72944,6 +73031,7 @@ exports[`Storyshots Views / Customers / Customer details no default billing addr aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="firstName" + spellcheck="false" type="text" value="Tom" /> @@ -72977,6 +73065,7 @@ exports[`Storyshots Views / Customers / Customer details no default billing addr aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Cooper" /> @@ -73019,6 +73108,7 @@ exports[`Storyshots Views / Customers / Customer details no default billing addr aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="elizabeth.vaughn@example.com" /> @@ -73728,6 +73818,7 @@ exports[`Storyshots Views / Customers / Customer details no default shipping add aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="firstName" + spellcheck="false" type="text" value="Tom" /> @@ -73761,6 +73852,7 @@ exports[`Storyshots Views / Customers / Customer details no default shipping add aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Cooper" /> @@ -73803,6 +73895,7 @@ exports[`Storyshots Views / Customers / Customer details no default shipping add aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="email" value="elizabeth.vaughn@example.com" /> @@ -241318,6 +241411,7 @@ exports[`Storyshots Views / Site settings / Page default 1`] = `
@@ -242976,6 +243094,7 @@ exports[`Storyshots Views / Staff / Staff member details default 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Smith" /> @@ -243013,6 +243132,7 @@ exports[`Storyshots Views / Staff / Staff member details default 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="text" value="admin@example.com" /> @@ -243399,6 +243519,7 @@ exports[`Storyshots Views / Staff / Staff member details himself 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="firstName" + spellcheck="false" type="text" value="Jacob" /> @@ -243436,6 +243557,7 @@ exports[`Storyshots Views / Staff / Staff member details himself 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Smith" /> @@ -243473,6 +243595,7 @@ exports[`Storyshots Views / Staff / Staff member details himself 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="text" value="admin@example.com" /> @@ -243749,6 +243872,7 @@ exports[`Storyshots Views / Staff / Staff member details loading 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id MuiInputBase-disabled-id MuiOutlinedInput-disabled-id" disabled="" name="firstName" + spellcheck="false" type="text" value="" /> @@ -243787,6 +243911,7 @@ exports[`Storyshots Views / Staff / Staff member details loading 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id MuiInputBase-disabled-id MuiOutlinedInput-disabled-id" disabled="" name="lastName" + spellcheck="false" type="text" value="" /> @@ -243825,6 +243950,7 @@ exports[`Storyshots Views / Staff / Staff member details loading 1`] = ` class="MuiInputBase-input-id MuiOutlinedInput-input-id MuiInputBase-disabled-id MuiOutlinedInput-disabled-id" disabled="" name="email" + spellcheck="false" type="text" value="" /> @@ -244119,6 +244245,7 @@ exports[`Storyshots Views / Staff / Staff member details not admin 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="firstName" + spellcheck="false" type="text" value="Jacob" /> @@ -244156,6 +244283,7 @@ exports[`Storyshots Views / Staff / Staff member details not admin 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="lastName" + spellcheck="false" type="text" value="Smith" /> @@ -244193,6 +244321,7 @@ exports[`Storyshots Views / Staff / Staff member details not admin 1`] = ` aria-invalid="false" class="MuiInputBase-input-id MuiOutlinedInput-input-id" name="email" + spellcheck="false" type="text" value="admin@example.com" /> @@ -248928,6 +249057,7 @@ exports[`Storyshots Views / Warehouses / Create warehouse default 1`] = `