Skip to content

Commit affa37f

Browse files
authored
Merge pull request Expensify#88203 from callstack-internal/VickyStash/bugfix/88107-fix-trip-gap
Fix trip missing gap between two rows on a trip card
2 parents 63204ef + e015e90 commit affa37f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/ReportActionItem/TripRoomPreview.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ function TripRoomPreview({
206206
{reservationsData.length > 0 && (
207207
<FlatList
208208
data={reservationsData}
209-
style={[styles.gap4, styles.border, styles.borderRadiusComponentLarge, styles.p4]}
209+
style={[styles.border, styles.borderRadiusComponentLarge, styles.p4, styles.flexGrow0]}
210+
contentContainerStyle={styles.gap4}
210211
renderItem={renderItem}
211212
/>
212213
)}

0 commit comments

Comments
 (0)