File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 66} from '../../../shared/modules/conversion.utils' ;
77import { getTokenStandardAndDetails } from '../../store/actions' ;
88import { ERC1155 , ERC721 } from '../constants/common' ;
9+ import { isEqualCaseInsensitive } from '../../../shared/modules/string-utils' ;
910import * as util from './util' ;
1011import { formatCurrency } from './confirm-tx.util' ;
1112import { getTransactionData } from './transactions.util' ;
@@ -244,7 +245,7 @@ export async function getAssetDetails(
244245 const { standard } = tokenDetails ;
245246 if ( standard === ERC721 || standard === ERC1155 ) {
246247 const existingCollectible = existingCollectibles . find ( ( { address } ) =>
247- util . isEqualCaseInsensitive ( tokenAddress , address ) ,
248+ isEqualCaseInsensitive ( tokenAddress , address ) ,
248249 ) ;
249250
250251 if ( existingCollectible ) {
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ import AdvancedGasFeePopover from '../../components/app/advanced-gas-fee-popover
3333import EditGasFeePopover from '../../components/app/edit-gas-fee-popover' ;
3434import EditGasPopover from '../../components/app/edit-gas-popover/edit-gas-popover.component' ;
3535import Loading from '../../components/ui/loading-screen' ;
36- import { isEqualCaseInsensitive } from '../../../shared/modules/string-utils' ;
3736import { ERC20 , ERC1155 , ERC721 } from '../../helpers/constants/common' ;
3837import { getCustomTxParamsData } from './confirm-approve.util' ;
3938import ConfirmApproveContent from './confirm-approve-content' ;
You can’t perform that action at this time.
0 commit comments