hensei-web/src
Justin Edmund c9c37a2a28 fix: Phase 8a - fix users.update function call (24 -> 23 errors)
Fixed incorrect function call to users.update by removing extra fetch argument.

The issue: settings page was calling users.update(fetch, userId, updateData)
but the function signature is users.update(userId, updateData).

The fetch parameter is not needed - the users.update function uses the global
fetch internally via userAdapter.

Changes:
- src/routes/settings/+page.svelte:
  - Removed fetch argument from users.update call
  - Changed from: users.update(fetch, account.userId, updateData)
  - Changed to: users.update(account.userId, updateData)

Result: 24 → 23 errors (-1)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 20:05:12 -08:00
..
assets/icons add context menu ui components and i18n 2025-09-30 03:42:14 -07:00
lib fix: Phase 7d - fix null/undefined handling (28 -> 24 errors) 2025-11-28 20:04:02 -08:00
routes fix: Phase 8a - fix users.update function call (24 -> 23 errors) 2025-11-28 20:05:12 -08:00
themes add active unit highlighting with element focus rings 2025-11-28 11:04:04 -08:00
app.d.ts add auth store and update auth flow 2025-09-23 22:09:14 -07:00
app.html Init Svelte migration repo 2025-09-08 13:43:09 -07:00
app.scss update app styles 2025-09-25 00:26:50 -07:00
demo.spec.ts Init Svelte migration repo 2025-09-08 13:43:09 -07:00
hooks.server.ts add auth store and update auth flow 2025-09-23 22:09:14 -07:00
hooks.ts Init Svelte migration repo 2025-09-08 13:43:09 -07:00