Skip to content

Commit

Permalink
Move TxnDetails into KitProvider dir
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook committed May 15, 2024
1 parent 146e584 commit d0e199a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import { ethers } from 'ethers'
import React, { useEffect, useState } from 'react'
import { useConfig } from 'wagmi'

import { useAPIClient } from '../../hooks'
import { capitalize, compareAddress, getNativeTokenInfoByChainId } from '../../utils'
import { DecodingType, TransferProps, AwardItemProps, decodeTransactions } from '../../utils/txnDecoding'
import { CollectibleTileImage } from '../KitProvider/CollectibleTileImage'
import { useAPIClient } from '../../../hooks'
import { capitalize, compareAddress, getNativeTokenInfoByChainId } from '../../../utils'
import { DecodingType, TransferProps, AwardItemProps, decodeTransactions } from '../../../utils/txnDecoding'
import { CollectibleTileImage } from '../CollectibleTileImage'

interface TxnDetailsProps {
address: string
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/src/components/KitProvider/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ import { useStorage } from '../../hooks'
import { useWaasConfirmationHandler } from '../../hooks/useWaasConfirmationHandler'
import { ExtendedConnector, DisplayedAsset, EthAuthSettings, KitConfig, Theme, ModalPosition } from '../../types'
import { getModalPositionCss } from '../../utils'
import { TxnDetails } from '../TxnDetails'

import { ConnectWalletContent } from './ConnectWalletContent'
import { NetworkBadge } from './NetworkBadge'
import { SequenceLogo } from './SequenceLogo'
import { TxnDetails } from './TxnDetails'

export type KitConnectProviderProps = {
children: React.ReactNode
Expand Down

0 comments on commit d0e199a

Please sign in to comment.