Guest User

Untitled

a guest
Sep 30th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const hideLoginModalEpic = (
  2. action$,
  3. state$,
  4. ) => (
  5. state$
  6. .pipe(
  7. map(authInfoSelector),
  8. pluck('isAuthenticated'),
  9. distinctUntilChanged(),
  10. filter(Boolean),
  11. mapTo({ namespace: 'login' }),
  12. map(closeModal),
  13. )
  14. )
Add Comment
Please, Sign In to add comment