Skip to content

Commit

Permalink
fix: add missing origin in api call
Browse files Browse the repository at this point in the history
  • Loading branch information
redek91 committed Oct 4, 2024
1 parent 49c18f0 commit cc7c6ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/suedtirolRadeltApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const fetchCompanyGamificationActions = async (): Promise<
SuedtirolRadeltItem[]
> => {
const response = await suedtirolRadeltApiClient.get<ApiResponse>(
'/flat,node/CompanyGamificationAction/*/latest?where=sactive.eq.true&limit=-1'
'/flat,node/CompanyGamificationAction/*/latest?origin=webcomp-sustainability-apps&where=sactive.eq.true&limit=-1'
);
return parseResponse(response.data.data);
};

0 comments on commit cc7c6ae

Please sign in to comment.