aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components/BankDetailsByPaytoType.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-webextension/src/components/BankDetailsByPaytoType.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/components/BankDetailsByPaytoType.tsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/taler-wallet-webextension/src/components/BankDetailsByPaytoType.tsx b/packages/taler-wallet-webextension/src/components/BankDetailsByPaytoType.tsx
index ef2a9f243..ec5d1e7aa 100644
--- a/packages/taler-wallet-webextension/src/components/BankDetailsByPaytoType.tsx
+++ b/packages/taler-wallet-webextension/src/components/BankDetailsByPaytoType.tsx
@@ -77,12 +77,16 @@ export function BankDetailsByPaytoType({
<table>
<tr>
<td>{payto.targetPath}</td>
- <td>{Amounts.stringifyValue(amount)} BTC</td>
+ <td>
+ <Amount value={amount} hideCurrency /> BTC
+ </td>
</tr>
{payto.segwitAddrs.map((addr, i) => (
<tr key={i}>
<td>{addr}</td>
- <td>{Amounts.stringifyValue(min)} BTC</td>
+ <td>
+ <Amount value={min} hideCurrency /> BTC
+ </td>
</tr>
))}
</table>