Skip to content

Commit 0e85569

Browse files
committed
fix: eslint
1 parent 66af353 commit 0e85569

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/Date/AutoSizer.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ export default function AutoSizer({
3131
return (
3232
<View
3333
onLayout={onLayout}
34-
style={[sharedStyles.overflowHidden, sharedStyles.root, isLayoutInitialized && layout]}
34+
style={[
35+
sharedStyles.overflowHidden,
36+
sharedStyles.root,
37+
isLayoutInitialized && layout,
38+
]}
3539
>
3640
{isLayoutInitialized ? children(layout) : null}
3741
</View>

src/Date/DatePickerModalContentHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export function HeaderContentRange({
216216
const formatter = useMemo(() => {
217217
return new Intl.DateTimeFormat(locale, {
218218
month: 'short',
219-
day: 'numeric'
219+
day: 'numeric',
220220
})
221221
}, [locale])
222222

0 commit comments

Comments
 (0)