Skip to content

Commit f32b8ea

Browse files
authored
Merge pull request #451 from web-ridge/minor-fixes
Fix warning and android issue where save label gets truncated
2 parents 193debd + cd01fbb commit f32b8ea

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

example/app.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"plugins": [
2727
"expo-router"
2828
],
29+
"newArchEnabled": true,
2930
"experiments": {
3031
"typedRoutes": true
3132
}

src/Date/DatePickerModalHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function DatePickerModalHeader(
4444
color={color}
4545
testID="react-native-paper-dates-close"
4646
/>
47-
<Appbar.Content title={''} />
47+
<Appbar.Content title={undefined} />
4848
<Button
4949
textColor={theme.isV3 ? theme.colors.primary : color}
5050
onPress={props.onSave}

0 commit comments

Comments
 (0)