fixed stuck on loading page when not logged in

This commit is contained in:
Miodec 2022-02-19 21:28:47 +01:00
parent 2f6534f8a8
commit 1549eb5aa1

View file

@ -278,6 +278,11 @@ const authListener = firebase.auth().onAuthStateChanged(async function (user) {
Account.update();
// SignOutButton.show();
}
} else {
PageController.change();
setTimeout(() => {
Focus.set(false);
}, 125 / 2);
}
let theme = Misc.findGetParameter("customTheme");