Skip to content

Commit

Permalink
Do not specify portal field for outdoorSite detail call
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrucs committed Oct 29, 2024
1 parent ec58de9 commit 17e4757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/modules/outdoorSite/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const fetchOutdoorSiteDetails = (
id: string,
): Promise<RawOutdoorSiteDetails> => {
return GeotrekAPI.get(`/outdoor_site/${encodeURIComponent(id)}/`, {
params: { ...fieldsParamsDetails, ...query, ...portalsFilter },
params: { ...fieldsParamsDetails, ...query },
}).then(r => r.data);
};

Expand Down

0 comments on commit 17e4757

Please sign in to comment.