diff --git a/packages/app/src/state/futures/hooks.ts b/packages/app/src/state/futures/hooks.ts index abd7e136c..867fc6a44 100644 --- a/packages/app/src/state/futures/hooks.ts +++ b/packages/app/src/state/futures/hooks.ts @@ -209,16 +209,6 @@ export const useFetchStakeMigrateData = () => { useFetchAction(fetchStakeMigrateData, { dependencies: [networkId, wallet], }) - - useFetchAction(() => fetchFuturesFees({ start, end }), { - dependencies: [networkId, start, end], - disabled: !networkSupportsStaking, - }) - - useFetchAction(() => fetchFuturesFeesForAccount({ start, end }), { - dependencies: [networkId, wallet, start, end], - disabled: !wallet || !networkSupportsStaking, - }) } export const useFetchReferralData = () => {