Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions services/workspaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,11 @@ export class WorkspacesClient extends BaseHttpClient implements ICancelableClien
}

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

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

return await response.json();
}
Expand Down
Loading