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 once
