Skip to content

Commit

Permalink
Removed excess pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
REllEK-IO committed Oct 3, 2023
1 parent ee6221b commit 0330ce6
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/concepts/axium/qualities/setBlockingMode.quality.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,6 @@ export function setBlockingModeReducer(state: AxiumState, _action: Action) {
concepts.forEach(concept => {
concept.qualities.forEach(quality => {
if (quality.method) {
quality.method.pipe(
catchError((err: unknown, caught: Observable<Action>) => {
if (state.logging) {
console.error('METHOD ERROR', err);
}
return caught;
}));
const sub = quality.method.subscribe(action => {
const action$ = state.action$ as Subject<Action>;
blockingMethodSubscription(action$, action);
Expand Down

0 comments on commit 0330ce6

Please sign in to comment.