fixed wallet query typo

This commit is contained in:
noumantahir 2023-01-06 22:05:46 +05:00
parent 214747428f
commit 94528147d7

View File

@ -20,7 +20,7 @@ export const useGetAssetsQuery = () => {
}
},[isRefreshing])
const query = useQuery([QUERIES.DRAFTS.GET, currentAccount.username], async () => {
const query = useQuery([QUERIES.WALLET.GET, currentAccount.username], async () => {
await dispatch(fetchAndSetCoinsData(isRefreshing));
setIsRefreshing(false);
return true;