Skip to content

Commit 0485c4f

Browse files
authored
(fix): join oauth scopes without +
1 parent cbd3f17 commit 0485c4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wrapper/WebflowClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class WebflowClient extends FernClient {
3333
if (typeof scope === "string") {
3434
params["scope"] = scope;
3535
} else {
36-
params["scope"] = scope.join("+");
36+
params["scope"] = scope.join(" ");
3737
}
3838
return `https://webflow.com/oauth/authorize?${qs.stringify(params)}`;
3939
}

0 commit comments

Comments
 (0)