diff --git a/src/features/stake/components/StakingConfirmationTx/Deposit.tsx b/src/features/stake/components/StakingConfirmationTx/Deposit.tsx index f90a5e7d72..9024347517 100644 --- a/src/features/stake/components/StakingConfirmationTx/Deposit.tsx +++ b/src/features/stake/components/StakingConfirmationTx/Deposit.tsx @@ -20,6 +20,8 @@ const CURRENCY = 'USD' const StakingConfirmationTxDeposit = ({ order }: StakingOrderConfirmationViewProps) => { const isOrder = order.type === ConfirmationViewTypes.KILN_NATIVE_STAKING_DEPOSIT + // the fee is returned in decimal format, so we multiply by 100 to get the percentage + const fee = (order.fee * 100).toFixed(2) return ( {isOrder && ( @@ -58,7 +60,7 @@ const StakingConfirmationTxDeposit = ({ order }: StakingOrderConfirmationViewPro } > - {order.fee}% + {fee} %