use 'estimated' fee

This commit is contained in:
fmtabbara
2022-03-23 12:42:56 +00:00
parent e66dc01966
commit d9733a97ae
+1 -1
View File
@@ -20,7 +20,7 @@ export const Fee = ({ feeType }: { feeType: Operation }) => {
if (fee) {
return (
<Typography sx={{ color: 'nym.fee', fontWeight: 600 }}>
Fee for this transaction: {`${fee} ${currency?.major}`}{' '}
Estimated fee for this transaction: {`${fee} ${currency?.major}`}{' '}
</Typography>
);
}