Skip to content

Commit

Permalink
fixed last cache update typo
Browse files Browse the repository at this point in the history
  • Loading branch information
noumantahir committed Aug 30, 2023
1 parent 8f86b1d commit 496dedb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/queries/postQueries/wavesQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import {
UseMutationOptions,
useMutation,
useQueries, useQuery, useQueryClient,
useQueries, useQueryClient,
} from '@tanstack/react-query';
import { useEffect, useMemo, useRef, useState } from 'react';

Expand All @@ -25,7 +25,7 @@ export const useWavesQuery = (host: string) => {
const cacheRef = useRef(cache);

const cachedVotes = cache.votesCollection
const lastCacheUpdate = cache.lastCacheUpdate
const lastCacheUpdate = cache.lastUpdate


const [isRefreshing, setIsRefreshing] = useState(false);
Expand Down

0 comments on commit 496dedb

Please sign in to comment.