diff --git a/src/pages/wallet/wallet-history/hooks/ManageWalletHistoryContext.tsx b/src/pages/wallet/wallet-history/hooks/ManageWalletHistoryContext.tsx index 2a7a907..71d4d39 100644 --- a/src/pages/wallet/wallet-history/hooks/ManageWalletHistoryContext.tsx +++ b/src/pages/wallet/wallet-history/hooks/ManageWalletHistoryContext.tsx @@ -258,7 +258,6 @@ const ManageWalletContextProvider = ({ children }: { children: React.ReactNode } return { data: [], totalCount: 0 }; } - // Fetch wallets to map wallet names const walletsResponse = await GetData(`${API_URL_WALLET}/dashboard/wallet/`, { limit: 100, page: 1, @@ -267,7 +266,6 @@ const ManageWalletContextProvider = ({ children }: { children: React.ReactNode } order_direction: 'ASC' }); - // Fetch groups to map group names const groupsResponse = await GetData(`${API_URL_WALLET}/dashboard/group/`, { limit: 100, page: 1,