Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoRCD committed Feb 18, 2025
1 parent 40543c4 commit 1fc91f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pages/settings/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const state = reactive<Partial<Schema>>({
password_new: undefined
})
const validate = (state: any): FormError[] => {
const validate = (state: Schema): FormError[] => {
const errors = []
if (state.password_current === state.password_new)
errors.push({ name: 'password_new', message: 'Passwords must be different' })
Expand Down

0 comments on commit 1fc91f5

Please sign in to comment.