Skip to content

Commit ee62b4a

Browse files
authored
Update workspaces.ts (#69)
Fixes to build exceptions
2 parents 53e30ea + 197cd19 commit ee62b4a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

services/workspaces.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,11 @@ export class WorkspacesClient extends BaseHttpClient implements ICancelableClien
236236
}
237237

238238
async resolveChangeset(workspaceId: WorkspaceId, changesetId: number): Promise<void> {
239-
await this.#newApi._put(`workspaces/${workspaceId}/changesets/${changesetId}/resolve`);
239+
await this._put(`workspaces/${workspaceId}/changesets/${changesetId}/resolve`);
240240
}
241241

242242
async getChangesetAdiff(workspaceId: WorkspaceId, changesetId: number): Promise<AugmentedDiff> {
243-
const response = await this.#newApi._get(`workspaces/${workspaceId}/changesets/${changesetId}/adiff`);
243+
const response = await this._get(`workspaces/${workspaceId}/changesets/${changesetId}/adiff`);
244244

245245
return await response.json();
246246
}

0 commit comments

Comments
 (0)