Skip to content

Commit

Permalink
fix(common)
Browse files Browse the repository at this point in the history
  • Loading branch information
agjini committed Oct 11, 2024
1 parent eeec1b4 commit 318139b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/services/community.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class CommunityServiceClient implements CommunityService {
}

getIncomingTrips(liane: string) {
return this.http.postAs<Liane[]>(`/community/liane/${liane}/incoming_trip`);
return this.http.get<Liane[]>(`/community/liane/${liane}/incoming_trip`);
}

joinTrip(query: JoinTripQuery) {
Expand Down

0 comments on commit 318139b

Please sign in to comment.