Skip to content

Commit

Permalink
remove console.log (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
johansteffner authored and renatorib committed Jun 21, 2017
1 parent b1c9ac0 commit 92a4b76
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/withSizes.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const withSizes = (...mappedSizesToProps) => (WrappedComponent) => {
const propsToPass = mappedSizesToProps
.map(check => check(dimensions, props))
.reduce((acc, props) => ({...acc, ...props}), {});
console.log(dimensions, props, propsToPass);

return propsToPass;
}
Expand All @@ -40,8 +39,6 @@ const withSizes = (...mappedSizesToProps) => (WrappedComponent) => {
propsToPass: parseMappedSizesToProps(sizes, this.props)
});

console.log(listeners);

this.dispatchSizes();
}

Expand Down

0 comments on commit 92a4b76

Please sign in to comment.