diff --git a/packages/app/src/systems/Error/services/ReportErrorService.tsx b/packages/app/src/systems/Error/services/ReportErrorService.tsx index 41cf8e30a..13541af39 100644 --- a/packages/app/src/systems/Error/services/ReportErrorService.tsx +++ b/packages/app/src/systems/Error/services/ReportErrorService.tsx @@ -69,7 +69,9 @@ export class ReportErrorService { if (errorIgnoreData?.action === 'hide') { captureException(e.error, e.extra); } - this.dismissError(e.id).finally(() => resolve(true)); + return resolve( + this.dismissError(e.id).finally(() => resolve(true)) + ); }) ); }