fix client side suspense

This commit is contained in:
Evan Almloff 2024-02-12 08:56:27 -06:00
parent 8e007cc137
commit 476b2ac88a
2 changed files with 4 additions and 4 deletions

View file

@ -439,7 +439,7 @@ impl VirtualDom {
self.process_events();
// Now that we have collected all queued work, we should check if we have any dirty scopes. If there are not, then we can poll any queued futures
if !self.dirty_scopes.is_empty() || !self.suspended_scopes.is_empty() {
if !self.dirty_scopes.is_empty() {
return;
}