better imports

This commit is contained in:
tjs 2023-07-20 13:36:51 -04:00
parent 663f989e5d
commit 220c5ff37a
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import Button from '@components/shared/Button'
import { MANGO_DAO_WALLET } from 'utils/governance/constants'
import { USDC_MINT } from 'utils/constants'
import { Transaction } from '@solana/web3.js'
import { chunk } from 'lodash'
import chunk from 'lodash/chunk'
import { useTranslation } from 'next-i18next'
import { notify } from 'utils/notifications'
import { isMangoError } from 'types'

View File

@ -18,7 +18,7 @@ import {
Transaction,
TransactionInstruction,
} from '@solana/web3.js'
import { chunk } from 'lodash'
import chunk from 'lodash/chunk'
import { MANGO_MINT } from 'utils/constants'
import { MANGO_GOVERNANCE_PROGRAM, MANGO_REALM_PK } from '../constants'
import { VsrClient } from '../voteStakeRegistryClient'