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 7db23bc commit 66af353Copy full SHA for 66af353
src/Date/AutoSizer.tsx
@@ -26,14 +26,14 @@ export default function AutoSizer({
26
[layout, setLayout]
27
)
28
29
- const isLayoutInizialized = layout && layout.height > 0 && layout.width > 0
+ const isLayoutInitialized = layout && layout.height > 0 && layout.width > 0
30
31
return (
32
<View
33
onLayout={onLayout}
34
- style={[sharedStyles.overflowHidden, sharedStyles.root, isLayoutInizialized && layout]}
+ style={[sharedStyles.overflowHidden, sharedStyles.root, isLayoutInitialized && layout]}
35
>
36
- {isLayoutInizialized ? children(layout) : null}
+ {isLayoutInitialized ? children(layout) : null}
37
</View>
38
39
}
0 commit comments