We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0ae829 commit b213571Copy full SHA for b213571
packages/browser/src/client/main.ts
@@ -69,6 +69,10 @@ client.ws.addEventListener('open', async () => {
69
const filenames = e.data.filenames
70
filenames.forEach(filename => runningFiles.delete(filename))
71
72
+ const iframeId = filenames.length > 1 ? ID_ALL : filenames[0]
73
+ iframes.get(iframeId)?.remove()
74
+ iframes.delete(iframeId)
75
+
76
if (!runningFiles.size)
77
await done()
78
break
0 commit comments