sync with local storage
This commit is contained in:
@@ -11,7 +11,7 @@ const emit = defineEmits<{
|
||||
toggleSideBar: []
|
||||
}>()
|
||||
|
||||
const searchActive = ref(false)
|
||||
const searchActive = ref<boolean>(false)
|
||||
|
||||
const signOut = async (close: () => Promise<boolean>) => {
|
||||
await firebaseSignOut()
|
||||
@@ -19,7 +19,7 @@ const signOut = async (close: () => Promise<boolean>) => {
|
||||
}
|
||||
|
||||
const authUI: any = inject('firebaseAuthUI')
|
||||
const authModalInitialStateOpen = ref(authUI.isPendingRedirect())
|
||||
const authModalInitialStateOpen = ref<boolean>(authUI.isPendingRedirect())
|
||||
</script>
|
||||
<template>
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user