Fix
Lint / lint (push) Successful in 14s

This commit is contained in:
Julien Valverdé
2026-05-11 12:49:16 +02:00
parent c011ff99a4
commit 56ff7ae3a4
+2 -2
View File
@@ -63,12 +63,12 @@ export const ComponentPrototype: ComponentPrototype<any, any, any> = Object.free
this: Component<P, A, E, R, F>,
runtimeRef: React.RefObject<Runtime.Runtime<Exclude<R, Scope.Scope>>>,
) {
return ((props: P) => Runtime.runSync(runtimeRef.current)(
return (props: P) => Runtime.runSync(runtimeRef.current)(
Effect.andThen(
useScope([], this),
scope => Effect.provideService(this.body(props), Scope.Scope, scope),
)
))
)
},
setFunctionComponentName<P extends {}, A extends React.ReactNode, E, R, F extends Component.Signature>(