diff --git a/src/@seed/api/report-configuration/report-configuration.service.ts b/src/@seed/api/report-configuration/report-configuration.service.ts index 80857a7c..44c016e9 100644 --- a/src/@seed/api/report-configuration/report-configuration.service.ts +++ b/src/@seed/api/report-configuration/report-configuration.service.ts @@ -81,7 +81,7 @@ export class ReportConfigurationService { delete(orgId: number, id: number): Observable { const url = `/api/v3/report_configurations/${id}/?organization_id=${orgId}` - return this._httpClient.delete(url).pipe( + return this._httpClient.delete(url, { observe: 'response' }).pipe( tap(() => { this.list(orgId) this._snackBar.success('Deleted report configuration')