From 1d4681fcb4008a451ce8baa2b101f138f9583907 Mon Sep 17 00:00:00 2001 From: Patrick Tajima Date: Tue, 28 Jun 2022 11:43:39 -0400 Subject: [PATCH] fix: fix wrong config import --- packages/frontend/src/redux/actions/staking.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/redux/actions/staking.js b/packages/frontend/src/redux/actions/staking.js index bb4b8cd45a..0b592d294d 100644 --- a/packages/frontend/src/redux/actions/staking.js +++ b/packages/frontend/src/redux/actions/staking.js @@ -8,9 +8,10 @@ import { STAKING_GAS_BASE, FARMING_CLAIM_GAS, FARMING_CLAIM_YOCTO, - LOCKUP_ACCOUNT_ID_SUFFIX + LOCKUP_ACCOUNT_ID_SUFFIX, + FT_MINIMUM_STORAGE_BALANCE_LARGE } from '../../config'; -import { fungibleTokensService, FT_MINIMUM_STORAGE_BALANCE_LARGE } from '../../services/FungibleTokens'; +import { fungibleTokensService } from '../../services/FungibleTokens'; import { listStakingPools } from '../../services/indexer'; import StakingFarmContracts from '../../services/StakingFarmContracts'; import { getLockupAccountId, getLockupMinBalanceForStorage } from '../../utils/account-with-lockup';