You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
```
0 commit comments