diff --git a/frontend/src/routes/user/ConnectedServices.svelte b/frontend/src/routes/user/ConnectedServices.svelte index 8cf1ee8..615fb8e 100644 --- a/frontend/src/routes/user/ConnectedServices.svelte +++ b/frontend/src/routes/user/ConnectedServices.svelte @@ -8,7 +8,7 @@ let connections = $state([]); async function loadConnections(){ - const url = api('/user/oidc/connected'); + const url = api('user/oidc/connected'); const resp = await fetch(url,{credentials:'include'}); if (resp.ok){ const arr = await resp.json();