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 66af353 commit 0e85569Copy full SHA for 0e85569
src/Date/AutoSizer.tsx
@@ -31,7 +31,11 @@ export default function AutoSizer({
31
return (
32
<View
33
onLayout={onLayout}
34
- style={[sharedStyles.overflowHidden, sharedStyles.root, isLayoutInitialized && layout]}
+ style={[
35
+ sharedStyles.overflowHidden,
36
+ sharedStyles.root,
37
+ isLayoutInitialized && layout,
38
+ ]}
39
>
40
{isLayoutInitialized ? children(layout) : null}
41
</View>
src/Date/DatePickerModalContentHeader.tsx
@@ -216,7 +216,7 @@ export function HeaderContentRange({
216
const formatter = useMemo(() => {
217
return new Intl.DateTimeFormat(locale, {
218
month: 'short',
219
- day: 'numeric'
+ day: 'numeric',
220
})
221
}, [locale])
222
0 commit comments