Skip to content

Commit fd0494d

Browse files
committed
chore: changes in playground
1 parent fa2778a commit fd0494d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Diff for: playground/src/pages/authentication.vue

+6-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import {
2222
useFirebaseAuth,
2323
} from 'vuefire'
2424
25-
const auth = useFirebaseAuth()
25+
const auth = useFirebaseAuth()!
2626
const user = useCurrentUser()
2727
let credential: AuthCredential | null = null
2828
@@ -114,7 +114,11 @@ getRedirectResult(auth).then((creds) => {
114114

115115
<p v-if="user">
116116
Name: {{ user.displayName }} <br />
117-
<img v-if="user.photoURL" :src="user.photoURL" referrerpolicy="no-referrer">
117+
<img
118+
v-if="user.photoURL"
119+
:src="user.photoURL"
120+
referrerpolicy="no-referrer"
121+
/>
118122
</p>
119123

120124
<hr />

0 commit comments

Comments
 (0)