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`