fix: user changes
This commit is contained in:
@@ -106,7 +106,7 @@ const form = ref({
|
||||
password: '',
|
||||
passwordConfirmation: '',
|
||||
})
|
||||
const { validate, validateAt, errors } = useYup(schema)
|
||||
const { validate, validateAt, errors } = useYup(schema, () => form.value)
|
||||
|
||||
const registerMutation = useRegisterMutation()
|
||||
const { savePhoneNumber } = useAuth()
|
||||
|
||||
@@ -75,7 +75,7 @@ const form = ref({
|
||||
password: '',
|
||||
passwordConfirmation: '',
|
||||
})
|
||||
const { validate, validateAt, errors } = useYup(schema)
|
||||
const { validate, validateAt, errors } = useYup(schema, () => form.value)
|
||||
|
||||
const resetMutation = useResetPasswordMutation()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user