Skip to content

Commit 1f395bd

Browse files
chore: add timeout mount
1 parent d9c563d commit 1f395bd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

entrypoints/content.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ export default defineContentScript({
2525
})
2626

2727
// Call mount to add the UI to the DOM
28-
ui.mount()
28+
window.setTimeout(() => {
29+
ui.mount()
30+
}, 0)
2931
},
3032
})

0 commit comments

Comments
 (0)