Skip to content

Commit 7379994

Browse files
authored
fix(state): make rxjs imports to be compatible with rxjs v6 (rx-angular#1378)
1 parent bc8f650 commit 7379994

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

libs/state/effects/src/lib/effects.service.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@ import {
77
PartialObserver,
88
pipe,
99
Subject,
10-
Subscription,
10+
Subscription
11+
} from 'rxjs';
12+
import {
1113
catchError,
1214
filter,
1315
mapTo,
1416
mergeAll,
17+
share,
1518
takeUntil,
16-
tap, share
17-
} from 'rxjs';
19+
tap
20+
} from 'rxjs/operators';
1821
import { DestroyProp, OnDestroy$ } from './model';
1922
import { toHook, untilDestroyed } from './utils';
2023

0 commit comments

Comments
 (0)