OrJDev
OrJDev
@balazsorban44 really need this one its just 1 line of changes
so currently having this: ```ts const s = await checkSignup.mutateAsync({ email, password, countryCode: country, refUser, oId: currentOffer?.id, }); if (s) { setLogin(true); const s = await getSession({ broadcast: true, });...
Awesome thank you
Basically when an error is caught, the entire query freezes its state, no data is being updated, no status is being updated and no error is being set
https://github.com/TanStack/query/blob/main/examples/solid/solid-start-streaming/src/components/query-boundary.tsx must say, using ErrorBoundary + Suspense + throwOnError works, this issue is when we don't want the error to leak to the boundary but rather get it by using...