Skip to content

Commit

Permalink
Undo generic type for explorerFilteredAction observable
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrtj committed Sep 16, 2024
1 parent 248e4a8 commit 3812b82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const explorerAction$ = new Subject<ExplorerAction>();
const explorerFilteredAction$ = explorerAction$.pipe(
// consider observables as side-effects
flatMap((action: ExplorerAction) =>
isObservable(action) ? action : (from([action]) as Observable<ExplorerActions>)
isObservable(action) ? action : (from([action]) as Observable<ExplorerAction>)
),
distinctUntilChanged(isEqual)
);
Expand Down

0 comments on commit 3812b82

Please sign in to comment.