Skip to content
Snippets Groups Projects
Commit cba8f50a authored by Hamza HRAMCHI's avatar Hamza HRAMCHI
Browse files

FIX #17637 TIME 0:05 rm error code condition

parent 2a8d0780
No related branches found
No related tags found
No related merge requests found
...@@ -74,9 +74,7 @@ export class ExternalSignatoryBookManagerService { ...@@ -74,9 +74,7 @@ export class ExternalSignatoryBookManagerService {
resolve(data); resolve(data);
}), }),
catchError((err: any) => { catchError((err: any) => {
if (err.status !== 400) { this.notifications.handleSoftErrors(err);
this.notifications.handleSoftErrors(err);
}
resolve(null); resolve(null);
return of(false); return of(false);
}) })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment