From dcc616345cbc860557a9ec9d35f5c9fe312b220f Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 28 Nov 2023 22:25:51 -0500 Subject: [PATCH] fix amount --- src/app/accounts/addcredit/addcredit.page.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/accounts/addcredit/addcredit.page.ts b/src/app/accounts/addcredit/addcredit.page.ts index 89501dc..7d65524 100644 --- a/src/app/accounts/addcredit/addcredit.page.ts +++ b/src/app/accounts/addcredit/addcredit.page.ts @@ -137,8 +137,8 @@ export class AddcreditPage implements OnInit { payViaPromise() { this.paymentData.public_key = this.flutterwave_key; this.paymentData.tx_ref = this.startCreditResult.credit_reference; - this.paymentData.amount = this.startCreditResult.amount; - + this.paymentData.amount = this.startCreditResult.amount*0.1; // no kobo + this.flutterwave.asyncInlinePay(this.paymentData).then( (response) =>{