Skip to content

Commit 9c1c2cb

Browse files
committedSep 23, 2024·
fix: remove credentialless attribute for iframe due to storage isolation, revert #614
1 parent 6b1be0e commit 9c1c2cb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎packages/overlay/src/composables/iframe.ts

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export function useIframe(clientUrl: string, onLoad: () => void) {
99
iframe.value.id = 'vue-devtools-iframe'
1010
iframe.value.src = clientUrl
1111
iframe.value.setAttribute('data-v-inspector-ignore', 'true')
12-
iframe.value.setAttribute('credentialless', '')
1312
iframe.value.onload = onLoad
1413
return iframe.value
1514
}

0 commit comments

Comments
 (0)
Please sign in to comment.