Skip to content

Commit e8bf78e

Browse files
author
FalkWolsky
committed
fix orgId questionmark in API calls
1 parent c49eb8d commit e8bf78e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/packages/lowcoder/src/api/configApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ConfigApi extends Api {
1313
static fetchConfig(orgId?: string): AxiosPromise<ConfigResponse> {
1414
let authConfigURL = ConfigApi.configURL;
1515
if(orgId?.length) {
16-
authConfigURL += `?orgId?=${orgId}`;
16+
authConfigURL += `?orgId=${orgId}`;
1717
}
1818
return Api.get(authConfigURL);
1919
}

0 commit comments

Comments
 (0)