Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
Fix XmrRedeemInMempoolPage to reflect correct Monero amount
Browse files Browse the repository at this point in the history
  • Loading branch information
binarybaron committed Nov 12, 2023
1 parent 4f53eef commit 91fb79d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export default function XmrRedeemInMempoolPage({
}: XmrRedeemInMempoolPageProps) {
const swap = useActiveSwapInfo();
const additionalContent = swap
? `This transaction transfers ${piconerosToXmr(
getSwapXmrAmount(swap)
).toFixed(6)} XMR to ${state?.bobXmrRedeemAddress}`
? `This transaction transfers ${getSwapXmrAmount(swap).toFixed(6)} XMR to ${
state?.bobXmrRedeemAddress
}`
: null;

return (
Expand Down

0 comments on commit 91fb79d

Please sign in to comment.