Skip to content

Commit

Permalink
πŸ› Fix query key for TickerUsersQuery
Browse files Browse the repository at this point in the history
  • Loading branch information
0x46616c6b committed Jan 20, 2025
1 parent 3b8aa9f commit c14dadb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/queries/useTickerUsersQuery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface Props {

const useTickerUsersQuery = ({ ticker, token }: Props) => {
return useQuery({
queryKey: ['tickerUsers'],
queryKey: ['tickerUsers', ticker.id],
queryFn: () => fetchTickerUsersApi(token, ticker),
})
}
Expand Down

0 comments on commit c14dadb

Please sign in to comment.