Skip to content

Commit a988ee4

Browse files
committed
nits
1 parent 1a40d8c commit a988ee4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/server/src/ide-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export class IDEService {
3636

3737
async getIDEConfig(request: IdeServiceApi.GetConfigRequest): Promise<IDEConfig> {
3838
try {
39-
let resp = await this.ideService.getConfig(request);
40-
let config: IDEConfig = JSON.parse(resp.content);
39+
const response = await this.ideService.getConfig(request);
40+
const config: IDEConfig = JSON.parse(response.content);
4141
this.cacheConfig = config;
4242
return config;
4343
} catch (e) {

0 commit comments

Comments
 (0)