From 4baece6811f1ae1bcd8316d9b163dc883281f2c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Fri, 18 Jul 2025 15:29:47 +0200 Subject: [PATCH] Fix --- packages/effect-fc/src/Component.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/effect-fc/src/Component.ts b/packages/effect-fc/src/Component.ts index 79efb67..85331ac 100644 --- a/packages/effect-fc/src/Component.ts +++ b/packages/effect-fc/src/Component.ts @@ -329,12 +329,12 @@ export const withOptions: { )) export const withRuntime: { - ( + , R>( context: React.Context>, - ): { - (self: Component & Suspense): React.FC

- (self: Component): React.FC

- } + ): (self: T) => React.FC & SuspenseProps + : Component.Props + > ( self: Component & Suspense, context: React.Context>,