From 7572caea91978972e35f776a082821b9715e1a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Tue, 31 Mar 2026 12:45:21 +0200 Subject: [PATCH] Fix --- packages/effect-fc/src/Form.ts | 8 ++++---- packages/effect-fc/src/Mutation.ts | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/effect-fc/src/Form.ts b/packages/effect-fc/src/Form.ts index 5c37310..564d8f4 100644 --- a/packages/effect-fc/src/Form.ts +++ b/packages/effect-fc/src/Form.ts @@ -186,9 +186,9 @@ export declare namespace make { export const make = Effect.fnUntraced(function* ( options: make.Options ): Effect.fn.Return< - RootForm, MP>, + RootForm, MP>, never, - Scope.Scope | R | Result.forkEffect.OutputContext + Scope.Scope | R | Result.forkEffect.OutputContext > { const mutation = yield* Mutation.make(options) const valueLens = Lens.fromSubscriptionRef(yield* SubscriptionRef.make(Option.none())) @@ -230,9 +230,9 @@ export declare namespace service { export const service = ( options: service.Options ): Effect.Effect< - RootForm, MP>, + RootForm, MP>, never, - Scope.Scope | R | Result.forkEffect.OutputContext + Scope.Scope | R | Result.forkEffect.OutputContext > => Effect.tap( make(options), form => Effect.forkScoped(form.run), diff --git a/packages/effect-fc/src/Mutation.ts b/packages/effect-fc/src/Mutation.ts index be4b71e..2f3a730 100644 --- a/packages/effect-fc/src/Mutation.ts +++ b/packages/effect-fc/src/Mutation.ts @@ -111,12 +111,12 @@ export declare namespace make { export const make = Effect.fnUntraced(function* ( options: make.Options ): Effect.fn.Return< - Mutation, P>, + Mutation, P>, never, - Scope.Scope | Result.forkEffect.OutputContext + Scope.Scope | Result.forkEffect.OutputContext > { return new MutationImpl( - yield* Effect.context>(), + yield* Effect.context>(), options.f as any, options.initialProgress as P,