Skip to content

Commit d32c59d

Browse files
committed
Fix typo
1 parent 859a257 commit d32c59d

File tree

1 file changed

+1
-1
lines changed
  • packages/react-native-web/src/vendor/react-native/VirtualizedList

1 file changed

+1
-1
lines changed

packages/react-native-web/src/vendor/react-native/VirtualizedList/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1849,7 +1849,7 @@ class VirtualizedList extends React.PureComponent<Props, State> {
18491849
// Mark as high priority if we're close to the start of the first item
18501850
// But only if there are items before the first rendered item
18511851
if (first > 0) {
1852-
const distStart = offset - this.__getFrameMetricsApprox(first).offset;
1852+
const distStart = offset - this._getFrameMetricsApprox(first).offset;
18531853
hiPri =
18541854
hiPri ||
18551855
distStart < 0 ||

0 commit comments

Comments
 (0)