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 8ee2ac1 commit 3f096d1Copy full SHA for 3f096d1
app/index.js
@@ -150,9 +150,12 @@ export default class InfiniteScroll extends Component {
150
}
151
152
requestAnimationFrame(() => {
153
- this._infScroll.style.overflow = "auto";
154
- this._infScroll.style.transform = "none";
155
- this._infScroll.style.willChange = "none";
+ // this._infScroll
+ if (this._infScroll) {
+ this._infScroll.style.overflow = "auto";
156
+ this._infScroll.style.transform = "none";
157
+ this._infScroll.style.willChange = "none";
158
+ }
159
});
160
161
0 commit comments