text change

This commit is contained in:
Gala
2022-09-14 11:38:10 +02:00
parent c513014913
commit bfa0144594
@@ -30,11 +30,7 @@ export const ModalFee = ({ fee, isLoading, error, divider }: TFeeProps) => (
export const ModalTotalAmount = ({ fee, amount, isLoading, error, divider }: TTotalAmountProps) => {
return (
<>
<ModalListItem
label="Fee for this transaction"
value={getValue({ fee, amount, isLoading, error })}
fontWeight={600}
/>
<ModalListItem label="Total amount" value={getValue({ fee, amount, isLoading, error })} fontWeight={600} />
{divider && <ModalDivider />}
</>
);