aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/cta/InvoicePay
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-06-21 14:51:14 -0300
committerSebastian <sebasjm@gmail.com>2023-06-21 14:51:14 -0300
commit9dbf0bd7d2dc9353aa210a0c33faf0a5c5086f73 (patch)
tree520426b320e47656743c3d577204f7591a583c95 /packages/taler-wallet-webextension/src/cta/InvoicePay
parent7010e707bab40b74d4ec258bd2207be6cf254f31 (diff)
downloadwallet-core-9dbf0bd7d2dc9353aa210a0c33faf0a5c5086f73.tar.xz
better wording to the tx details
Diffstat (limited to 'packages/taler-wallet-webextension/src/cta/InvoicePay')
-rw-r--r--packages/taler-wallet-webextension/src/cta/InvoicePay/views.tsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/taler-wallet-webextension/src/cta/InvoicePay/views.tsx b/packages/taler-wallet-webextension/src/cta/InvoicePay/views.tsx
index 85923a2c5..e54e54bd1 100644
--- a/packages/taler-wallet-webextension/src/cta/InvoicePay/views.tsx
+++ b/packages/taler-wallet-webextension/src/cta/InvoicePay/views.tsx
@@ -22,7 +22,10 @@ import { PaymentButtons } from "../../components/PaymentButtons.js";
import { SubTitle, WalletAction } from "../../components/styled/index.js";
import { Time } from "../../components/Time.js";
import { useTranslationContext } from "@gnu-taler/web-util/browser";
-import { getAmountWithFee, InvoiceDetails } from "../../wallet/Transaction.js";
+import {
+ getAmountWithFee,
+ InvoicePaymentDetails,
+} from "../../wallet/Transaction.js";
import { State } from "./index.js";
export function ReadyView(
@@ -38,7 +41,7 @@ export function ReadyView(
<Part
title={i18n.str`Details`}
text={
- <InvoiceDetails
+ <InvoicePaymentDetails
amount={getAmountWithFee(effective, raw, "debit")}
/>
}