Open
Description
Reproduction
Check snippet below
Steps to reproduce the bug
I'm building my Nuxt 3 App in SSR mode and Firebase auth.
I got an Hydratation issue, don't understand why.
Going trough a deeper inspection detect vuefire do not manage properly firebase guest users.
Simple snippet to in default.vue layout in order to reproduce
<script setup lang="ts">
import { getAuth, sendSignInLinkToEmail, signInWithEmailAndPassword } from 'firebase/auth'
import type { MenuItem } from 'primevue/menuitem'
const currentUser = await getCurrentUser()
console.log('currentUser', currentUser.uid, currentUser.isAnonymous)
nuxt.config.ts vuefire module configuration
vuefire: {
auth: {
enabled: true,
sessionCookie: true,
},
config: {
apiKey: process.env.FIREBASE_API_KEY,
authDomain: process.env.FIREBASE_AUTH_DOMAIN,
projectId: process.env.FIREBASE_PROJECT_ID,
storageBucket: process.env.FIREBASE_STORAGE_BUCKET,
messagingSenderId: process.env.FIREBASE_MESSAGING_SENDER_ID,
appId: process.env.FIREBASE_APP_ID,
},
emulators: false,
},

Expected behavior
I expect to have a proper guest user also in SSR
Actual behavior
From image you can see a mismatch between SSR and client
Additional information
No response