diff --git a/src/app/hooks/queries/ordinals/useAddressRareSats.ts b/src/app/hooks/queries/ordinals/useAddressRareSats.ts index 58bf5d395..547cd9cf6 100644 --- a/src/app/hooks/queries/ordinals/useAddressRareSats.ts +++ b/src/app/hooks/queries/ordinals/useAddressRareSats.ts @@ -1,7 +1,7 @@ import useWalletSelector from '@hooks/useWalletSelector'; import { getAddressUtxoOrdinalBundles, getUtxoOrdinalBundle } from '@secretkeylabs/xverse-core'; import { useInfiniteQuery, useQuery } from '@tanstack/react-query'; -import { InvalidParamsError, handleRetries } from '@utils/query'; +import { handleRetries, InvalidParamsError } from '@utils/query'; import { mapRareSatsAPIResponseToRareSats } from '@utils/rareSats'; const PAGE_SIZE = 30; diff --git a/src/app/hooks/queries/ordinals/useCollectionMarketData.ts b/src/app/hooks/queries/ordinals/useCollectionMarketData.ts index 6be5c9830..990a667fc 100644 --- a/src/app/hooks/queries/ordinals/useCollectionMarketData.ts +++ b/src/app/hooks/queries/ordinals/useCollectionMarketData.ts @@ -1,7 +1,7 @@ import useWalletSelector from '@hooks/useWalletSelector'; import { CollectionMarketDataResponse, getCollectionMarketData } from '@secretkeylabs/xverse-core'; import { useQuery } from '@tanstack/react-query'; -import { InvalidParamsError, handleRetries } from '@utils/query'; +import { handleRetries, InvalidParamsError } from '@utils/query'; /** * Get inscription collection market data diff --git a/src/app/hooks/useWalletReducer.ts b/src/app/hooks/useWalletReducer.ts index 99b66a1e5..7bf17b3e8 100644 --- a/src/app/hooks/useWalletReducer.ts +++ b/src/app/hooks/useWalletReducer.ts @@ -13,8 +13,8 @@ import { } from '@secretkeylabs/xverse-core/types'; import { newWallet, walletFromSeedPhrase } from '@secretkeylabs/xverse-core/wallet'; import { - ChangeNetworkAction, addAccountAction, + ChangeNetworkAction, fetchAccountAction, getActiveAccountsAction, resetWalletAction, @@ -22,7 +22,7 @@ import { setWalletAction, setWalletUnlockedAction, storeEncryptedSeedAction, - updateLedgerAccountsAction + updateLedgerAccountsAction, } from '@stores/wallet/actions/actionCreators'; import { useQueryClient } from '@tanstack/react-query'; import { generatePasswordHash } from '@utils/encryptionUtils'; diff --git a/src/app/screens/home/index.tsx b/src/app/screens/home/index.tsx index db7fef6bf..b32baf195 100644 --- a/src/app/screens/home/index.tsx +++ b/src/app/screens/home/index.tsx @@ -1,9 +1,9 @@ import dashboardIcon from '@assets/img/dashboard-icon.svg'; -import SIP10Icon from '@assets/img/dashboard/SIP10.svg'; import BitcoinIcon from '@assets/img/dashboard/bitcoin_icon.svg'; import BitcoinToken from '@assets/img/dashboard/bitcoin_token.svg'; import ListDashes from '@assets/img/dashboard/list_dashes.svg'; import ordinalsIcon from '@assets/img/dashboard/ordinalBRC20.svg'; +import SIP10Icon from '@assets/img/dashboard/SIP10.svg'; import stacksIcon from '@assets/img/dashboard/stack_icon.svg'; import ArrowSwap from '@assets/img/icons/ArrowSwap.svg'; import AccountHeaderComponent from '@components/accountHeader'; diff --git a/src/app/screens/nftDashboard/index.tsx b/src/app/screens/nftDashboard/index.tsx index 999488b7d..6a9345813 100644 --- a/src/app/screens/nftDashboard/index.tsx +++ b/src/app/screens/nftDashboard/index.tsx @@ -153,11 +153,8 @@ export type NftDashboardState = { const useNftDashboard = (): NftDashboardState => { const { t } = useTranslation('translation', { keyPrefix: 'NFT_DASHBOARD_SCREEN' }); const dispatch = useDispatch(); - const { - hasActivatedOrdinalsKey, - hasActivatedRareSatsKey, - rareSatsNoticeDismissed, - } = useWalletSelector(); + const { hasActivatedOrdinalsKey, hasActivatedRareSatsKey, rareSatsNoticeDismissed } = + useWalletSelector(); const [openReceiveModal, setOpenReceiveModal] = useState(false); const [showNewFeatureAlert, setShowNewFeatureAlert] = useState(false); const [showNoticeAlert, setShowNoticeAlert] = useState(false);