chore(webui): various inconsequential fixes
All checks were successful
main / main (push) Successful in 1m49s
main / publish (push) Has been skipped
main / deploy (push) Has been skipped

This commit is contained in:
Julien Dessaux 2025-04-21 23:50:07 +02:00
parent 6fb2db436d
commit d084a07bb5
Signed by: adyxax
GPG key ID: F92E51B86E07177E
2 changed files with 3 additions and 6 deletions

View file

@ -231,7 +231,7 @@ func (db *DB) SaveAccount(account *model.Account) error {
account.PasswordReset,
account.Id)
if err != nil {
return fmt.Errorf("failed to update user id %s: %w", account.Id, err)
return fmt.Errorf("failed to update account id %s: %w", account.Id, err)
}
return nil
}