From e79d7d117c8b4c8fa2b38e812ebdfdc8c6e57c87 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Sun, 22 Aug 2021 16:29:34 +0530 Subject: [PATCH] logout bug fix --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 000625f..4c21fad 100644 --- a/index.html +++ b/index.html @@ -2208,9 +2208,9 @@ } function logout() { - getConfirmation("Do you want to sign out?").then((result) => { + getConfirmation("Do you want to sign out?").then(async (result) => { if (result) { - floDapps.clearCredentials() + await floDapps.clearCredentials() onLoadStartUp() } })