Skip to content

Commit

Permalink
after rebase and lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NiranjanaBinoy committed Dec 8, 2022
1 parent df861ff commit 2d32f79
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions ui/pages/send/gas-display/gas-display.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,15 +197,17 @@ export default function GasDisplay({ gasError }) {
</Box>
}
detailTitleColor={COLORS.TEXT_DEFAULT}
detailText={useCurrencyRateCheck &&
(<Box className="gas-display__currency-container">
<LoadingHeartBeat estimateUsed={estimateUsed} />
<UserPreferencedCurrencyDisplay
type={SECONDARY}
value={hexMinimumTransactionFee}
hideLabel={Boolean(useNativeCurrencyAsPrimaryCurrency)}
/>
</Box>)
detailText={
useCurrencyRateCheck && (
<Box className="gas-display__currency-container">
<LoadingHeartBeat estimateUsed={estimateUsed} />
<UserPreferencedCurrencyDisplay
type={SECONDARY}
value={hexMinimumTransactionFee}
hideLabel={Boolean(useNativeCurrencyAsPrimaryCurrency)}
/>
</Box>
)
}
detailTotal={
<Box className="gas-display__currency-container">
Expand Down

0 comments on commit 2d32f79

Please sign in to comment.