The reset password page is no longer working. Assuming this is due to the change in the reset-password schema. This schema validates the current password, but this is not provided when resetting the password. This is done via passing the customerId and a token.
|
.object({ |
|
currentPassword: z.string().trim(), |
|
password: passwordSchema, |
|
confirmPassword: z.string(), |
|
}) |
The reset password page is no longer working. Assuming this is due to the change in the reset-password schema. This schema validates the current password, but this is not provided when resetting the password. This is done via passing the customerId and a token.
catalyst/core/vibes/soul/sections/reset-password-section/schema.ts
Lines 40 to 44 in 1ab2c82