Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 31a4556

Browse files
committed
Fix proxy window clean
1 parent f1efcbe commit 31a4556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/serialize/window.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function cleanupProxyWindows() {
1616
for (let id of idToProxyWindow.keys()) {
1717
// $FlowFixMe
1818
if (idToProxyWindow.get(id).shouldClean()) {
19-
delete idToProxyWindow[id];
19+
idToProxyWindow.del(id);
2020
}
2121
}
2222
}

0 commit comments

Comments
 (0)