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 1a40d8c commit a988ee4Copy full SHA for a988ee4
components/server/src/ide-service.ts
@@ -36,8 +36,8 @@ export class IDEService {
36
37
async getIDEConfig(request: IdeServiceApi.GetConfigRequest): Promise<IDEConfig> {
38
try {
39
- let resp = await this.ideService.getConfig(request);
40
- let config: IDEConfig = JSON.parse(resp.content);
+ const response = await this.ideService.getConfig(request);
+ const config: IDEConfig = JSON.parse(response.content);
41
this.cacheConfig = config;
42
return config;
43
} catch (e) {
0 commit comments