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
When implementing the use of mergMap in Angular Ngrx effects, ESLint warns about the deprecated use of mergMap even if the operator is used correctly.
Expected behavior
The deprecation message should not appear when the operator is used correctly.
Reproduction code
exportconstdeleteAddon=createEffect((actions$=inject(Actions),repository: AddonsRepository=inject(ADDONS_REPOSITORY))=>{returnactions$.pipe(ofType(DeleteAddon),// This mergeMap alerts for deprecation!!mergeMap(({ id })=>deleteAddonUseCase(repository,id).pipe(map(()=>DeleteAddonSuccess()),)),);},{functional: true},);
Reproduction URL
No response
Version
7.8.1
Environment
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
When implementing the use of mergMap in Angular Ngrx effects, ESLint warns about the deprecated use of mergMap even if the operator is used correctly.
Expected behavior
The deprecation message should not appear when the operator is used correctly.
Reproduction code
Reproduction URL
No response
Version
7.8.1
Environment
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: