fix withdraw redirect when there is no enough balance

This commit is contained in:
Sebastian 2022-03-21 09:58:05 -03:00
parent c202abef5e
commit fac550d454
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1

View File

@ -155,7 +155,7 @@ export interface PaymentRequestViewProps {
onClick: () => void;
payErrMsg?: string;
uri: string;
goToWalletManualWithdraw: () => void;
goToWalletManualWithdraw: (s: string) => void;
balance: AmountJson | undefined;
}
export function PaymentRequestView({
@ -196,8 +196,8 @@ export function PaymentRequestView({
);
}
const amountRaw = Amounts.parseOrThrow(payStatus.amountRaw);
if (payStatus.status === PreparePayResultType.PaymentPossible) {
const amountRaw = Amounts.parseOrThrow(payStatus.amountRaw);
const amountEffective: AmountJson = Amounts.parseOrThrow(
payStatus.amountEffective,
);
@ -284,7 +284,10 @@ export function PaymentRequestView({
)}
</section>
<section>
<ButtonSuccess upperCased onClick={goToWalletManualWithdraw}>
<ButtonSuccess
upperCased
onClick={() => goToWalletManualWithdraw(amountRaw.currency)}
>
<i18n.Translate>Withdraw digital cash</i18n.Translate>
</ButtonSuccess>
</section>