Skip to content

Commit

Permalink
fix(trip): Fix display trip on community
Browse files Browse the repository at this point in the history
  • Loading branch information
Freezzzen committed Aug 1, 2024
1 parent 170e64f commit f14ebdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/trip/TripSurveyView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ type ActiveViewProps = { trip: Liane; isMember: boolean; joinRequest?: JoinLiane
const ActiveView = ({ trip, isMember, joinRequest, handleJoinTrip }: ActiveViewProps) => {
return (
<Row style={{ marginTop: 8, justifyContent: "space-between", alignItems: "center" }}>
<View style={{ marginLeft: 10 }}>
<View style={{ marginLeft: 10, justifyContent: "flex-start", flexDirection: "row" }}>
{trip.members.map(m => (
<UserPicture key={m.user.id} url={m.user.pictureUrl} id={m.user.id} size={28} style={{ marginLeft: -10 }} />
))}
Expand Down

0 comments on commit f14ebdb

Please sign in to comment.