Skip to content

Commit aafe9c4

Browse files
authored
refactor: fix overflow issue on time picker modal (#497)
1 parent 5f6347b commit aafe9c4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Time/TimePickerModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ const styles = StyleSheet.create({
273273
shadowOpacity: 0.34,
274274
shadowRadius: 6.27,
275275
elevation: 3,
276-
minWidth: 287,
276+
minWidth: 328,
277277
paddingVertical: 8,
278278
},
279279
timePickerContainer: {

src/__tests__/Date/__snapshots__/CalendarEdit.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ exports[`renders CalendarEdit 1`] = `
265265
}
266266
testID="text-input-flat"
267267
underlineColorAndroid="transparent"
268-
value="08/07/2025"
268+
value="09/05/2025"
269269
withModal={false}
270270
/>
271271
</View>

src/__tests__/Date/__snapshots__/DatePickerInput.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ exports[`renders DatePickerInput 1`] = `
258258
}
259259
testID="text-input-flat"
260260
underlineColorAndroid="transparent"
261-
value="08/07/2025"
261+
value="09/05/2025"
262262
/>
263263
</View>
264264
<View

src/__tests__/Date/__snapshots__/DatePickerInputWithoutModal.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ exports[`renders DatePickerInputWithoutModal 1`] = `
256256
}
257257
testID="text-input-flat"
258258
underlineColorAndroid="transparent"
259-
value="08/07/2025"
259+
value="09/05/2025"
260260
/>
261261
</View>
262262
</View>

0 commit comments

Comments
 (0)