Skip to content

Commit

Permalink
bump positions query cache persist version (#6307)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbbb authored Dec 6, 2024
1 parent 9fc3035 commit 8e103ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/defi/PositionsQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const getPositions = async (address: string, currency: NativeCurrencyKey): Promi
export const POSITIONS_QUERY_KEY = 'positions';

export const positionsQueryKey = ({ address, currency }: PositionsArgs) =>
createQueryKey(POSITIONS_QUERY_KEY, { address, currency }, { persisterVersion: 2 });
createQueryKey(POSITIONS_QUERY_KEY, { address, currency }, { persisterVersion: 3 });

type PositionsQueryKey = ReturnType<typeof positionsQueryKey>;

Expand Down

0 comments on commit 8e103ca

Please sign in to comment.