logout bug fix

This commit is contained in:
sairaj mote 2021-08-22 16:29:34 +05:30
parent 6ccbc141d4
commit e79d7d117c

View File

@ -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()
}
})