We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue: It won't trigger re-render when the data is loaded.
The doc: https://github.com/TanStack/form/blob/main/docs/framework/solid/guides/async-initial-values.md
Here's the minimal reproduction: https://stackblitz.com/edit/solidjs-templates-cicpay3v?file=src%2FApp.tsx
There are two problems of this example:
createQuery
<Show fallback={<p>loading..</p>}>
<Switch> <Match>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue: It won't trigger re-render when the data is loaded.
The doc: https://github.com/TanStack/form/blob/main/docs/framework/solid/guides/async-initial-values.md
Here's the minimal reproduction: https://stackblitz.com/edit/solidjs-templates-cicpay3v?file=src%2FApp.tsx
There are two problems of this example:
createQuery
should not be destructured<Show fallback={<p>loading..</p>}>
or<Switch> <Match>
, instead of early returningThe text was updated successfully, but these errors were encountered: