mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 15:02:34 +00:00
fix optimizer
This commit is contained in:
@ -17,7 +17,7 @@ export default function ConfirmPassword() {
|
||||
const submit: FormEventHandler = (e) => {
|
||||
e.preventDefault();
|
||||
|
||||
post(route('password.confirm'), {
|
||||
post(route('password.confirm.store'), {
|
||||
onFinish: () => reset('password'),
|
||||
});
|
||||
};
|
||||
|
@ -30,7 +30,7 @@ export default function Login({ status, canResetPassword }: LoginProps) {
|
||||
|
||||
const submit: FormEventHandler = (e) => {
|
||||
e.preventDefault();
|
||||
post(route('login'), {
|
||||
post(route('login.store'), {
|
||||
onFinish: () => reset('password'),
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user