mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 01:39:44 +01:00
Update fee-card.js (#18746)
Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
This commit is contained in:
parent
c972900928
commit
935831658f
@ -6,15 +6,15 @@ import InfoTooltip from '../../../components/ui/info-tooltip';
|
||||
import { CHAIN_IDS } from '../../../../shared/constants/network';
|
||||
import TransactionDetail from '../../../components/app/transaction-detail/transaction-detail.component';
|
||||
import TransactionDetailItem from '../../../components/app/transaction-detail-item/transaction-detail-item.component';
|
||||
import Typography from '../../../components/ui/typography';
|
||||
import {
|
||||
TextColor,
|
||||
TypographyVariant,
|
||||
FONT_WEIGHT,
|
||||
TextVariant,
|
||||
FontWeight,
|
||||
} from '../../../helpers/constants/design-system';
|
||||
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
||||
import { MetaMetricsEventCategory } from '../../../../shared/constants/metametrics';
|
||||
import { getUseCurrencyRateCheck } from '../../../selectors';
|
||||
import { Text } from '../../../components/component-library';
|
||||
|
||||
const GAS_FEES_LEARN_MORE_URL =
|
||||
'https://community.metamask.io/t/what-is-gas-why-do-transactions-take-so-long/3172';
|
||||
@ -120,14 +120,14 @@ export default function FeeCard({
|
||||
(secondaryFee?.maxFee !== undefined ||
|
||||
primaryFee?.maxFee !== undefined) && (
|
||||
<>
|
||||
<Typography
|
||||
<Text
|
||||
as="span"
|
||||
fontWeight={FONT_WEIGHT.BOLD}
|
||||
fontWeight={FontWeight.Bold}
|
||||
color={TextColor.textAlternative}
|
||||
variant={TypographyVariant.H7}
|
||||
variant={TextVariant.bodySm}
|
||||
>
|
||||
{t('maxFee')}
|
||||
</Typography>
|
||||
</Text>
|
||||
{useCurrencyRateCheck
|
||||
? `: ${secondaryFee.maxFee}`
|
||||
: `: ${primaryFee.maxFee}`}
|
||||
|
Loading…
Reference in New Issue
Block a user