log window messages except metamask
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 35s Details

This commit is contained in:
Ladd Hoffman 2024-04-25 14:31:05 -05:00
parent 9935c70cec
commit 1867aef9ec
1 changed files with 1 additions and 0 deletions

View File

@ -256,6 +256,7 @@ function Widget() {
window.addEventListener(
'message',
(event) => {
if (event.data?.target?.startsWith('metamask')) return;
console.log('window message', event);
},
);