Skip to content

Commit

Permalink
chore: changes in playground
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Jul 27, 2023
1 parent fa2778a commit fd0494d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions playground/src/pages/authentication.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
useFirebaseAuth,
} from 'vuefire'
const auth = useFirebaseAuth()
const auth = useFirebaseAuth()!
const user = useCurrentUser()
let credential: AuthCredential | null = null
Expand Down Expand Up @@ -114,7 +114,11 @@ getRedirectResult(auth).then((creds) => {

<p v-if="user">
Name: {{ user.displayName }} <br />
<img v-if="user.photoURL" :src="user.photoURL" referrerpolicy="no-referrer">
<img
v-if="user.photoURL"
:src="user.photoURL"
referrerpolicy="no-referrer"
/>
</p>

<hr />
Expand Down

0 comments on commit fd0494d

Please sign in to comment.