fix #7332
This commit is contained in:
parent
0cf147ba98
commit
538f27e9dd
@ -45,6 +45,11 @@ export function BankDetailsByPaytoType({
|
||||
|
||||
if (payto.isKnown && payto.targetType === "bitcoin") {
|
||||
const min = segwitMinAmount(amount.currency);
|
||||
const addrs = payto.segwitAddrs.map(
|
||||
(a) => `${a} ${Amounts.stringifyValue(min)}`,
|
||||
);
|
||||
addrs.unshift(`${payto.targetPath} ${Amounts.stringifyValue(amount)}`);
|
||||
const copyContent = addrs.join("\n");
|
||||
return (
|
||||
<section
|
||||
style={{
|
||||
@ -85,11 +90,7 @@ export function BankDetailsByPaytoType({
|
||||
</td>
|
||||
<td></td>
|
||||
<td>
|
||||
<CopyButton
|
||||
getContent={() =>
|
||||
`${payto.targetPath} ${Amounts.stringifyValue(amount)} BTC`
|
||||
}
|
||||
/>
|
||||
<CopyButton getContent={() => copyContent} />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -116,8 +116,10 @@ export function TransactionPage({ tid, goToWalletHistory }: Props): VNode {
|
||||
onDelete={() =>
|
||||
wxApi.deleteTransaction(tid).then(() => goToWalletHistory(currency))
|
||||
}
|
||||
onRetry={() =>
|
||||
wxApi.retryTransaction(tid).then(() => goToWalletHistory(currency))
|
||||
onRetry={async () =>
|
||||
await wxApi
|
||||
.retryTransaction(tid)
|
||||
.then(() => goToWalletHistory(currency))
|
||||
}
|
||||
onRefund={(id) => wxApi.applyRefundFromPurchaseId(id).then()}
|
||||
onBack={() => goToWalletHistory(currency)}
|
||||
|
Loading…
Reference in New Issue
Block a user