You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue:
If I use multiple Leptos Queries, and match on the results, any component nested in the Suspense or Transition will get re-rendered N+1 times, where N is the number of Leptos Queries I am using.
so I guess what I am really asking, is how are you supposed to effectively use multiple queries in the same component without re-rendering it multiple times?
Issue:
If I use multiple Leptos Queries, and match on the results, any component nested in the Suspense or Transition will get re-rendered N+1 times, where N is the number of Leptos Queries I am using.
I created an MRE:
https://github.com/rconnol/mre-multiple-resources
If you run this application:
cargo leptos serve
if you go to
/correct
which uses a traditional Leptos resource, it only renders onceThe text was updated successfully, but these errors were encountered: