Angular - Signals
Examine this Effect code:
What is the issue with this Effect?
updateUser$ = createEffect(() => this.actions$.pipe( ofType(updateUser), map(() => this.api.updateUser()), map(() => updateUserSuccess()) ));
What is the issue with this Effect?
