Skip to content

Commit

Permalink
fix(unlock-app): eventOrganizers uses caching key
Browse files Browse the repository at this point in the history
  • Loading branch information
julien51 committed Feb 6, 2025
1 parent 666185f commit ad10ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unlock-app/src/hooks/useEventOrganizers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const useEventOrganizers = ({
checkoutConfig,
}: useEventOrganizersProps) => {
return useQuery({
queryKey: ['eventOrganizers', checkoutConfig.id],
queryKey: ['eventOrganizers', checkoutConfig],
queryFn: async (): Promise<string[]> => {
let organizers: string[] = []
// Hardcoded event organizers for specific events : /event/hats-friends
Expand Down

0 comments on commit ad10ea0

Please sign in to comment.