Skip to content

Commit

Permalink
2 line callout
Browse files Browse the repository at this point in the history
  • Loading branch information
bwees committed Mar 16, 2024
1 parent 0f89ec0 commit 078c6de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/map/StopCallout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const StopCallout: React.FC<Props> = ({ stop, tintColor, route, direction }) =>
onPress={() => { scrollToStop(stop) }}
>
<BusIcon name={route.shortName} color={tintColor} isCallout={true} style={{ marginRight: 8 }} />
<Text style={{ flex: 1, fontWeight: 'bold' }} numberOfLines={1}>{stop.name}</Text>
<Text style={{ flex: 1, fontWeight: 'bold' }} numberOfLines={2} >{stop.name}</Text>
<AmenityRow amenities={estimate?.amenities || []} color={lightMode.subtitle} size={18}/>
</TouchableOpacity>

Expand Down

0 comments on commit 078c6de

Please sign in to comment.