diff --git a/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdatePasswordForm.jsx b/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdatePasswordForm.jsx index f37ca83a8..7893780ae 100644 --- a/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdatePasswordForm.jsx +++ b/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdatePasswordForm.jsx @@ -57,7 +57,7 @@ export default function UpdatePasswordForm({ className }) { handleChange={(e) => setData('current_password', e.target.value)} type="password" className="mt-1 block w-full" - autocomplete="current-password" + autoComplete="current-password" /> @@ -73,7 +73,7 @@ export default function UpdatePasswordForm({ className }) { handleChange={(e) => setData('password', e.target.value)} type="password" className="mt-1 block w-full" - autocomplete="new-password" + autoComplete="new-password" /> @@ -88,7 +88,7 @@ export default function UpdatePasswordForm({ className }) { handleChange={(e) => setData('password_confirmation', e.target.value)} type="password" className="mt-1 block w-full" - autocomplete="new-password" + autoComplete="new-password" /> diff --git a/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx b/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx index a69f14011..6331f059c 100644 --- a/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx +++ b/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx @@ -40,7 +40,7 @@ export default function UpdateProfileInformation({ mustVerifyEmail, status, clas handleChange={(e) => setData('name', e.target.value)} required autofocus - autocomplete="name" + autoComplete="name" /> @@ -56,7 +56,7 @@ export default function UpdateProfileInformation({ mustVerifyEmail, status, clas value={data.email} handleChange={(e) => setData('email', e.target.value)} required - autocomplete="email" + autoComplete="email" />