Does Plasmic change the behavior of window.scrollTo?

does Plasmic change the behavior of window.scrollTo? I’ve got this code on a page:

useEffect(() => {
    console.log("hello???");
    window.scrollTo(0,0);
}, [currentPosts]);

and I’m logging exactly when I expect to log, so I know this effect is running, but the window never scrolls back to the top.

We shouldn’t be changing that… Do you have a small reproducible codebase demonstrating this?