From 2ca36af19eac4cf0916a8b1bb6eab0440322389e Mon Sep 17 00:00:00 2001 From: Anbraten <6918444+anbraten@users.noreply.github.com> Date: Mon, 14 Jul 2025 17:17:00 +0200 Subject: [PATCH] Use correct parameter for forge selection on login (#5325) --- web/src/compositions/useAuthentication.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/compositions/useAuthentication.ts b/web/src/compositions/useAuthentication.ts index 8ca3df563..0bf0bb2df 100644 --- a/web/src/compositions/useAuthentication.ts +++ b/web/src/compositions/useAuthentication.ts @@ -12,6 +12,6 @@ export default () => const config = useUserConfig(); config.setUserConfig('redirectUrl', url); } - window.location.href = `${useConfig().rootPath}/authorize?${forgeId !== undefined ? `forgeId=${forgeId}` : ''}`; + window.location.href = `${useConfig().rootPath}/authorize?${forgeId !== undefined ? `forge_id=${forgeId}` : ''}`; }, }) as const;