Skip to content

Commit

Permalink
fix(Store): pass all required arguments to projector (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daskus1 authored and brandonroberts committed Jul 12, 2017
1 parent 22105c1 commit 9b82b3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/store/src/selector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function createSelector<State, S1, S2, S3, S4, Result>(
s2: Selector<State, S2>,
s3: Selector<State, S3>,
s4: Selector<State, S4>,
projector: (s1: S1, s2: S2, s3: S3) => Result,
projector: (s1: S1, s2: S2, s3: S3, s4: S4) => Result,
): MemoizedSelector<State, Result>;
export function createSelector<State, S1, S2, S3, S4, S5, Result>(
s1: Selector<State, S1>,
Expand Down

0 comments on commit 9b82b3a

Please sign in to comment.