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 913456c commit 5ba7fe7Copy full SHA for 5ba7fe7
.eslintrc
@@ -24,7 +24,7 @@
24
"curly": [1, "multi-line"],
25
"dot-location": [1, "property"],
26
"dot-notation": 1,
27
- "eqeqeq": [1, "smart"],
+ "eqeqeq": 1,
28
"guard-for-in": 1,
29
"no-alert": 1,
30
"no-caller": 2,
src/hoc/trackWindowScroll.js
@@ -88,7 +88,7 @@ const trackWindowScroll = BaseComponent => {
88
}
89
90
removeListeners() {
91
- if (typeof window == 'undefined' || this.useIntersectionObserver) {
+ if (typeof window === 'undefined' || this.useIntersectionObserver) {
92
return;
93
94
0 commit comments