Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Effects): Remove toPayload utility function (#738)
BREAKING CHANGE: The utility function `toPayload`, deprecated in @ngrx/effects v4.0, has been removed. Before: ```ts import { toPayload } from '@ngrx/effects'; actions$.ofType('SOME_ACTION').map(toPayload); ``` After: ```ts actions$.ofType('SOME_ACTION').map((action: SomeActionWithPayload) => action.payload) ```
- Loading branch information