diff --git a/src/components/ActivityDetailsModal.tsx b/src/components/ActivityDetailsModal.tsx index a64e5164..f5d33095 100644 --- a/src/components/ActivityDetailsModal.tsx +++ b/src/components/ActivityDetailsModal.tsx @@ -408,6 +408,7 @@ function OnchainDetails(props: { "Pending" )} +
{/* Have to do all these shenanigans because css / html is hard */} @@ -450,6 +451,7 @@ function OnchainDetails(props: {
+
); diff --git a/src/routes/Receive.tsx b/src/routes/Receive.tsx index 38c35796..4b592c84 100644 --- a/src/routes/Receive.tsx +++ b/src/routes/Receive.tsx @@ -63,6 +63,7 @@ export type OnChainTx = { }>; }; txid: string; + internal_id: string; received: number; sent: number; confirmation_time: { @@ -201,7 +202,7 @@ export function Receive() { const paymentTxId = paidState() === "onchain_paid" ? paymentTx() - ? paymentTx()?.txid + ? paymentTx()?.internal_id : undefined : paymentInvoice() ? paymentInvoice()?.payment_hash