bump all dependencies

This commit is contained in:
Athou
2023-02-04 08:34:23 +01:00
parent ea4b120a85
commit 6d4b0cbdef
5 changed files with 2699 additions and 1592 deletions

View File

@@ -22,7 +22,7 @@ export function ProfileSettings() {
const form = useForm<FormData>({
validate: {
newPasswordConfirmation: (value: string, values: FormData) => (value !== values.newPassword ? t`Passwords do not match` : null),
newPasswordConfirmation: (value, values) => (value !== values.newPassword ? t`Passwords do not match` : null),
},
})
const { setValues } = form