Skip to content

Commit 1c0d6b1

Browse files
committed
chore: fix img auth
1 parent 1aa5728 commit 1c0d6b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/nuxt/playground/pages/authentication.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ getRedirectResult(auth).then((creds) => {
125125

126126
<p v-if="user">
127127
Name: {{ user.displayName }} <br>
128-
<img v-if="user.photoURL" :src="user.photoURL">
128+
<img v-if="user.photoURL" :src="user.photoURL" referrerpolicy="no-referrer">
129129
</p>
130130

131131
<hr>

playground/src/pages/authentication.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ getRedirectResult(auth).then((creds) => {
114114

115115
<p v-if="user">
116116
Name: {{ user.displayName }} <br />
117-
<img v-if="user.photoURL" :src="user.photoURL" />
117+
<img v-if="user.photoURL" :src="user.photoURL" referrerpolicy="no-referrer">
118118
</p>
119119

120120
<hr />

0 commit comments

Comments
 (0)