style: auto-fix linting issues
This commit is contained in:
parent
e9a15d812f
commit
471b61d413
1 changed files with 3 additions and 3 deletions
|
|
@ -21,11 +21,11 @@ export class AuthManager {
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
if (!auth) return;
|
if (!auth) return;
|
||||||
|
|
||||||
if (this.isTauri) {
|
if (this.isTauri) {
|
||||||
getRedirectResult(auth).catch(() => {});
|
getRedirectResult(auth).catch(() => {});
|
||||||
}
|
}
|
||||||
|
|
||||||
this.unsubscribe = onAuthStateChanged(auth, (user) => {
|
this.unsubscribe = onAuthStateChanged(auth, (user) => {
|
||||||
this.user = user;
|
this.user = user;
|
||||||
this.updateUI(user);
|
this.updateUI(user);
|
||||||
|
|
@ -127,4 +127,4 @@ export class AuthManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const authManager = new AuthManager();
|
export const authManager = new AuthManager();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue