Remove unused parameter

This commit is contained in:
Daniel Sanchez 2021-03-29 10:46:51 +02:00
parent e20c6dc03e
commit 8902f37e96
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import { batch, useDispatch } from 'react-redux'
import { fetchCollectibles } from 'src/logic/collectibles/store/actions/fetchCollectibles'
import { fetchSafeTokens } from 'src/logic/tokens/store/actions/fetchSafeTokens'
import fetchSafe, { checkAndUpdateSafe } from 'src/logic/safe/store/actions/fetchSafe'
import { checkAndUpdateSafe } from 'src/logic/safe/store/actions/fetchSafe'
import fetchTransactions from 'src/logic/safe/store/actions/transactions/fetchTransactions'
import { TIMEOUT } from 'src/utils/constants'