I have this very simple astro page which works fine when i don't use view transitions or when the page is loaded directly...
`---
import Layout from "../layouts/layout.astro";
<Layout>
<h1 slot="title">Example</h1>
<div id="container"></div>
</Layout>
<script is:inline src="https://www.some-url.com/script-file.js"></script>`
However, when I use ViewTransitions as specified by https://docs.astro.build/en/guides/view-transitions/#adding-view-transitions-to-a-page, i find that the "script" is not executed when the page loads up.
Am I doing something wrong or is this a bug in the implementation that I should raise a github issue for?