We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1c9ac0 commit 92a4b76Copy full SHA for 92a4b76
src/withSizes.js
@@ -18,7 +18,6 @@ const withSizes = (...mappedSizesToProps) => (WrappedComponent) => {
18
const propsToPass = mappedSizesToProps
19
.map(check => check(dimensions, props))
20
.reduce((acc, props) => ({...acc, ...props}), {});
21
- console.log(dimensions, props, propsToPass);
22
23
return propsToPass;
24
}
@@ -40,8 +39,6 @@ const withSizes = (...mappedSizesToProps) => (WrappedComponent) => {
40
39
propsToPass: parseMappedSizesToProps(sizes, this.props)
41
});
42
43
- console.log(listeners);
44
-
45
this.dispatchSizes();
46
47
0 commit comments