Use correct parameter for forge selection on login (#5325)

This commit is contained in:
Anbraten
2025-07-14 17:17:00 +02:00
committed by GitHub
parent 5c00b9d74b
commit 2ca36af19e

View File

@@ -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;