Skip to content

Commit

Permalink
fix: a6 a7 type failure
Browse files Browse the repository at this point in the history
  • Loading branch information
satanTime committed Dec 26, 2020
1 parent 9e3d6a1 commit b8d81f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ngrx-correlation-id/src/lib/reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function cidReducer(state: State = initialState, action: CidActions): Sta
return state;
}

export const selectCidFeature = createFeatureSelector<State>('ngrxCorrelationId');
export const selectCidFeature: <T extends object>(state: T) => State = createFeatureSelector('ngrxCorrelationId');

const selectCidResult = new Map<string, CidTask>();
const selectCidInternal: any = (state: any, cid: string) => {
Expand Down

0 comments on commit b8d81f1

Please sign in to comment.