Skip to content

Commit

Permalink
fix (#5138)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrodyHughes authored Oct 24, 2023
1 parent 16eaa69 commit af64509
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/screens/NFTSingleOfferSheet/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { useCallback, useEffect, useRef, useState } from 'react';
import lang from 'i18n-js';
import { Linking, View } from 'react-native';
import { WrappedAlert as Alert } from '@/helpers/alert';
import { useRoute } from '@react-navigation/native';
Expand Down Expand Up @@ -810,9 +811,10 @@ export function NFTSingleOfferSheet() {
hideInnerBorder
label={
insufficientEth
? i18n.t(
i18n.l.button.confirm_exchange.insufficient_eth
)
? lang.t('button.confirm_exchange.insufficient_token', {
tokenName: getNetworkObj(offer.network as Network)
.nativeCurrency.symbol,
})
: i18n.t(
i18n.l.nft_offers.single_offer_sheet.hold_to_sell
)
Expand Down

0 comments on commit af64509

Please sign in to comment.