We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b50924 commit b355410Copy full SHA for b355410
1 file changed
src/@seed/api/report-configuration/report-configuration.service.ts
@@ -81,7 +81,7 @@ export class ReportConfigurationService {
81
82
delete(orgId: number, id: number): Observable<unknown> {
83
const url = `/api/v3/report_configurations/${id}/?organization_id=${orgId}`
84
- return this._httpClient.delete<unknown>(url).pipe(
+ return this._httpClient.delete(url, { observe: 'response' }).pipe(
85
tap(() => {
86
this.list(orgId)
87
this._snackBar.success('Deleted report configuration')
0 commit comments