From 66dcfba457249a5ab00aa9941087537f3dd96d09 Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Fri, 21 Nov 2025 22:12:08 +0100 Subject: [PATCH] fixed api url Signed-off-by: Stephan Richter --- frontend/src/routes/user/ConnectedServices.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();