Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const hideLoginModalEpic = (
- action$,
- state$,
- ) => (
- state$
- .pipe(
- map(authInfoSelector),
- pluck('isAuthenticated'),
- distinctUntilChanged(),
- filter(Boolean),
- mapTo({ namespace: 'login' }),
- map(closeModal),
- )
- )
Add Comment
Please, Sign In to add comment