mirror of
https://github.com/trezor/trezor-wallet
synced 2025-04-05 01:45:45 +00:00
fix localized value for xrp fee select
This commit is contained in:
parent
b58cff72ff
commit
9a083dff87
@ -415,7 +415,7 @@ export const getFeeLevels = (
|
||||
// map BlockchainFeeLevel to SendFormReducer FeeLevel
|
||||
const levels = feeLevels.map(level => ({
|
||||
value: level.name,
|
||||
localizedValue: l10nFeeMap[level.value] || level.value,
|
||||
localizedValue: l10nFeeMap[level.value],
|
||||
fee: level.value,
|
||||
label: `${toDecimalAmount(level.value, network.decimals)} ${network.symbol}`,
|
||||
}));
|
||||
|
@ -445,7 +445,13 @@ const AccountSend = (props: Props) => {
|
||||
options={feeLevels}
|
||||
formatOptionLabel={option => (
|
||||
<FeeOptionWrapper>
|
||||
<OptionValue>{option.value}</OptionValue>
|
||||
<OptionValue>
|
||||
{option.localizedValue ? (
|
||||
<FormattedMessage {...option.localizedValue} />
|
||||
) : (
|
||||
option.value
|
||||
)}
|
||||
</OptionValue>
|
||||
<OptionLabel>{option.label}</OptionLabel>
|
||||
</FeeOptionWrapper>
|
||||
)}
|
||||
|
Loading…
Reference in New Issue
Block a user