From 56f05e93e77705f9cc6fe3c845e90325e47b413d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Fri, 31 Oct 2025 15:52:12 +0100 Subject: [PATCH] Fix --- packages/example/src/routes/result.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/example/src/routes/result.tsx b/packages/example/src/routes/result.tsx index 9c21600..6c89711 100644 --- a/packages/example/src/routes/result.tsx +++ b/packages/example/src/routes/result.tsx @@ -38,10 +38,8 @@ const ResultView = Component.makeUntraced("Result")(function*() { )} ) -}).pipe( - Component.withRuntime(runtime.context) -) +}) export const Route = createFileRoute("/result")({ - component: ResultView + component: Component.withRuntime(ResultView, runtime.context) })