Jonathan Reinink
Jonathan Reinink
Thanks for trying to make this work @pedroborges. 👍 > The main difference is that these are not simple callbacks, but event listeners. In Svelte you can't access event listeners...
Also, one more quick question...does this actually run the event listener (callback)? From what I can tell from this code, it doesn't...it just fires the event. Which, at that point,...
Yeah, this is on my roadmap as well. 👍 I put together those test helpers in Ping CRM pretty quick though, so I want to think that through a little...
Hmm, this is an unfortunate side affect to moving to the middleware approach to configuring Inertia. 😕 As sad as it is to say, this makes me think that we...
It was argued that it was more proper to do this work in a middleware, since otherwise you're doing Inertia configuration while running console commands. I personally don't think it...
> Naive question, but can't we just use `app()->runningInConsole()` to shunt the provider when necessary? Probably!
> I wouldnt know why anyone would like to share props to an error page Maybe they want to share their app name with the error page? I don't think...
Related discussion: https://github.com/inertiajs/inertia/discussions/559
I suspect this has something to do with the URL you're submitting to, which I assume isn't `/some-route`. What's the *exact* URL that's being used when submitting the request?
> I think the issue is because of trying to push a complex object into the page state. Once I replaced the page state with simple data, it worked without...