Skip to content

Commit

Permalink
fix response in detachIssueVcsChange
Browse files Browse the repository at this point in the history
  • Loading branch information
udamir authored Sep 19, 2024
1 parent 39f038f commit e5465cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resources/Issues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1084,8 +1084,8 @@ export class IssuesApi extends ResourceApi {
issueId: string,
changeId: string,
params?: FieldsParam<TSchema>,
): Promise<void> {
await this.fetch<void>(
): Promise<VcsChangeEntity<TSchema>> {
return this.fetch<VcsChangeEntity<TSchema>>(
...new RequestBuilder(`api/issues/${issueId}/vcsChanges/${changeId}`, { fields }, params).delete(),
)
}
Expand Down

0 comments on commit e5465cd

Please sign in to comment.