Skip to content

Commit

Permalink
Fix useless query param
Browse files Browse the repository at this point in the history
Don't show in changelog
  • Loading branch information
4ian committed Mar 6, 2024
1 parent a5d1149 commit ea4c2e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion newIDE/app/src/Utils/GDevelopServices/User.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ export const listRecommendations = async (
export const listDefaultRecommendations = async (): Promise<
Array<Recommendation>
> => {
const response = await client.get(`/recommendation?todo=true`);
const response = await client.get(`/recommendation`);
return response.data;
};

Expand Down

0 comments on commit ea4c2e0

Please sign in to comment.