diff --git a/src/components/skills/SkillSetupWizard.tsx b/src/components/skills/SkillSetupWizard.tsx index 510d6d982..681067381 100644 --- a/src/components/skills/SkillSetupWizard.tsx +++ b/src/components/skills/SkillSetupWizard.tsx @@ -148,7 +148,7 @@ export default function SkillSetupWizard({ try { // Call backend to get the real OAuth authorization URL const data = await apiClient.get<{ oauthUrl?: string }>( - `/auth/${oauth.provider}/connect?responseType=json&skillId=${skillId}`, + `/auth/${oauth.provider}/connect?skillId=${skillId}`, ); if (!data.oauthUrl) {