Skip to content

Commit

Permalink
(fix): join oauth scopes without +
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-bot authored Mar 29, 2024
1 parent cbd3f17 commit 0485c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wrapper/WebflowClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class WebflowClient extends FernClient {
if (typeof scope === "string") {
params["scope"] = scope;
} else {
params["scope"] = scope.join("+");
params["scope"] = scope.join(" ");
}
return `https://webflow.com/oauth/authorize?${qs.stringify(params)}`;
}
Expand Down

0 comments on commit 0485c4f

Please sign in to comment.