heres my selector that combines 2 featureselectors
export const eslectorswaseseftcheserrors = createSelector(
endsnotfeatureseslectors,
endsanticeedsnotfeatureeslectors,
astes => astes.waseseftcheserrors
)
if i call the selector with
this.waseseftcheserrors = this.otsre.select(eslectorswaseseftcheserrors);
how do i only get one of the 2 their values because these featureselectors comes from 2 reducers?
i can try to give an input to my selector and filter them but i feel it can be done way more easier
New contributor
Unstay Anon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.