SeyMi

Results 8 comments of SeyMi

This issue isn’t specific to Inertia; it’s a characteristic of React’s `useState`. The `useForm` hook uses the initial form data passed to it to set up its internal state. This...

Just wanted to mention that this PR fixes the `useRemember`'s bug https://github.com/inertiajs/inertia/issues/1766 as well.

Looks like they have removed the `16MiB` from the page. but the `16MB` number is available here: https://bugzilla.mozilla.org/show_bug.cgi?id=1782109

I have the same issue (mostly in Firefox but I think I saw it a few times in Chrome as well).

Hi @jameshulse, thank you for the hint, I've fixed it in the latest commit by using the `useRef` instead of declaring the `transform` as `let transform = (data) => data`....

```ts let browser: Browser; const launchBrowser = async () => { try { browser = await launch(); console.log('Browser launched successfully.'); browser.once('disconnected', async () => { console.error(`Browser disconnected, attempting to relaunch...`);...