From 59b7115d19f7f7f5b72da35f68ea0b1d749df94b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Sat, 10 May 2025 05:33:14 +0200 Subject: [PATCH] Fix --- packages/example/src/routes/tests.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/example/src/routes/tests.tsx b/packages/example/src/routes/tests.tsx index 51ce6a5..5552ffb 100644 --- a/packages/example/src/routes/tests.tsx +++ b/packages/example/src/routes/tests.tsx @@ -22,7 +22,7 @@ function RouteComponent() { ), []) const uuidStream = R.useStreamFromReactiveValues([uuid]) - const uuidStreamLatestValue = R.useSubscribeStream(uuidStream) + const [uuidStreamLatestValue, pullUuidStream] = R.usePullStream(uuidStream) const scope = R.useScope([uuid]) @@ -42,6 +42,7 @@ function RouteComponent() { onNone: () => <>, })} + ) }