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.
2 parents 53e30ea + 197cd19 commit ee62b4aCopy full SHA for ee62b4a
1 file changed
services/workspaces.ts
@@ -236,11 +236,11 @@ export class WorkspacesClient extends BaseHttpClient implements ICancelableClien
236
}
237
238
async resolveChangeset(workspaceId: WorkspaceId, changesetId: number): Promise<void> {
239
- await this.#newApi._put(`workspaces/${workspaceId}/changesets/${changesetId}/resolve`);
+ await this._put(`workspaces/${workspaceId}/changesets/${changesetId}/resolve`);
240
241
242
async getChangesetAdiff(workspaceId: WorkspaceId, changesetId: number): Promise<AugmentedDiff> {
243
- const response = await this.#newApi._get(`workspaces/${workspaceId}/changesets/${changesetId}/adiff`);
+ const response = await this._get(`workspaces/${workspaceId}/changesets/${changesetId}/adiff`);
244
245
return await response.json();
246
0 commit comments