From efc6fc017d65f4b6c8baf6cd9b211603ba6cd16e Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Tue, 10 Sep 2024 06:59:47 -0400 Subject: [PATCH] fix: forward subscribers for already-resolved Suspend during hydration --- tachys/src/reactive_graph/suspense.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tachys/src/reactive_graph/suspense.rs b/tachys/src/reactive_graph/suspense.rs index c9167bdb0..ffcf912f7 100644 --- a/tachys/src/reactive_graph/suspense.rs +++ b/tachys/src/reactive_graph/suspense.rs @@ -383,6 +383,8 @@ where subscriber.forward(); } }); + } else { + subscriber.forward(); } SuspendState { inner }