mirror of
https://github.com/trezor/trezor-wallet
synced 2025-02-05 04:41:25 +00:00
show used fee level (low/normal/high...)
This commit is contained in:
parent
bbd5420f15
commit
2f3872345d
@ -56,6 +56,10 @@ const Label = styled.div`
|
||||
color: ${colors.TEXT_SECONDARY};
|
||||
`;
|
||||
|
||||
const FeeLevelName = styled(StyledP)`
|
||||
padding-bottom: 0px;
|
||||
`;
|
||||
|
||||
const ConfirmSignTx = (props: Props) => {
|
||||
const {
|
||||
amount,
|
||||
@ -78,6 +82,7 @@ const ConfirmSignTx = (props: Props) => {
|
||||
<Label>To</Label>
|
||||
<Address>{ address }</Address>
|
||||
<Label>Fee</Label>
|
||||
<FeeLevelName>{selectedFeeLevel.value}</FeeLevelName>
|
||||
<StyledP>{ selectedFeeLevel.label }</StyledP>
|
||||
</Content>
|
||||
</Wrapper>
|
||||
|
Loading…
Reference in New Issue
Block a user