Skip to content

Commit

Permalink
now toastr only skips 400 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
laurens-ritense committed May 27, 2024
1 parent fd630f8 commit ad73fc5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class ViewModelService extends BaseApiService {
formName,
taskInstanceId
},
headers: new HttpHeaders().set(InterceptorSkip, 'all')
headers: new HttpHeaders().set(InterceptorSkip, '400')
});
}

Expand All @@ -51,7 +51,7 @@ export class ViewModelService extends BaseApiService {
formName,
taskInstanceId
},
headers: new HttpHeaders().set(InterceptorSkip, 'all')
headers: new HttpHeaders().set(InterceptorSkip, '400')
});
}

Expand All @@ -64,7 +64,7 @@ export class ViewModelService extends BaseApiService {
formName,
taskInstanceId
},
headers: new HttpHeaders().set(InterceptorSkip, 'all')
headers: new HttpHeaders().set(InterceptorSkip, '400')
});
}
}

0 comments on commit ad73fc5

Please sign in to comment.