From 2c957fb07212674ab3d8d6b8c68972af8d07e4c7 Mon Sep 17 00:00:00 2001 From: Johannes Date: Wed, 24 Jun 2026 20:23:12 -0400 Subject: [PATCH] fix(aria): correct auth users/me endpoint path Path was /api/auth/users/me but the auth controller is at /auth/api/users/me. Caused a CORS-then-404 error on every page load. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index edc650d..1c7f820 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -38,7 +38,7 @@ onMount(() => { document.documentElement.classList.add('dark-mode'); - authApi.get('/api/auth/users/me').then((res: any) => { + authApi.get('/auth/api/users/me').then((res: any) => { userInfo = { name: res.data.name, email: res.data.email, role: res.data.role }; }).catch(() => {}); });