sync with local storage

This commit is contained in:
2023-05-22 00:19:46 +02:00
parent 87c3ff52ef
commit 16c92ed33f
14 changed files with 95 additions and 67 deletions

View File

@@ -29,6 +29,6 @@ export const initializeFirebase = () => {
})
}
export const initialized = computed(() => user.value !== undefined)
export const initialized = computed<boolean>(() => user.value !== undefined)
export const signOut = () => firebase.auth().signOut()