From f4ed0e7660c24cebbac5b31f2b0002f641744cc2 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Sun, 19 Sep 2021 18:27:09 +0530 Subject: [PATCH] fixed minor loan issue --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index d5e1c5f..b0eddc6 100644 --- a/index.html +++ b/index.html @@ -1766,7 +1766,7 @@ const amount = parseFloat(getRef('get_loan_amount').value) const confirm = await getConfirmation('Continue?', `Confirm loan of ${amount.toLocaleString('en-IN', { currency: 'INR', style: 'currency' })}?`, 'Cancel', 'Confirm') if (confirm) { - showInitProcess('loan') + showProcess('loan') bank_app.requestLoan(amount) .then(() => { window.location.hash = `#/result?type=loan&amount=${amount}&status=pending`