Skip to content

Commit

Permalink
Fix bug in composePreprocessors
Browse files Browse the repository at this point in the history
  • Loading branch information
bdowning committed Apr 20, 2016
1 parent 7c29a42 commit 6f654d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/composePreprocessors.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function composePreprocessors(...preprocessors) {
const [ innerState, innerEasing, innerDecoder ] =
boundComposed(state, easing);
const [ outerState, outerEasing, outerDecoder ] =
preprocessor(innerState, innerDecoder);
preprocessor(innerState, innerEasing);
const combinedDecoder = (outputState) => {
return innerDecoder(outerDecoder(outputState));
};
Expand Down

0 comments on commit 6f654d8

Please sign in to comment.