We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c49eb8d commit e8bf78eCopy full SHA for e8bf78e
client/packages/lowcoder/src/api/configApi.ts
@@ -13,7 +13,7 @@ class ConfigApi extends Api {
13
static fetchConfig(orgId?: string): AxiosPromise<ConfigResponse> {
14
let authConfigURL = ConfigApi.configURL;
15
if(orgId?.length) {
16
- authConfigURL += `?orgId?=${orgId}`;
+ authConfigURL += `?orgId=${orgId}`;
17
}
18
return Api.get(authConfigURL);
19
0 commit comments