Skip to content

Commit

Permalink
feat: improve beeps list in app
Browse files Browse the repository at this point in the history
  • Loading branch information
bnussman committed Oct 20, 2024
1 parent 1f85821 commit dadfb58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/components/Beep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ export function Beep({ item }: Props) {
</View>
</View>
<View>
<View className="flex flex-row justify-between">
<Text weight="bold">Group size</Text>
<Text>{item.groupSize}</Text>
</View>
<View className="flex flex-row justify-between gap-12">
<Text weight="bold">Pick Up</Text>
<Text className="flex-shrink text-right">{item.origin}</Text>
Expand All @@ -57,6 +53,10 @@ export function Beep({ item }: Props) {
<Text weight="bold">Drop Off</Text>
<Text>{item.destination}</Text>
</View>
<View className="flex flex-row justify-between">
<Text weight="bold">Group size</Text>
<Text>{item.groupSize}</Text>
</View>
<View className="flex flex-row justify-between gap-12">
<Text weight="bold">Your Rating</Text>
<Text>{myRating ? printStars(myRating.stars) : "N/A"}</Text>
Expand Down

0 comments on commit dadfb58

Please sign in to comment.