Fix
All checks were successful
Lint / lint (push) Successful in 13s

This commit is contained in:
Julien Valverdé
2025-10-28 21:16:11 +01:00
parent c380fe9d08
commit 0b7d9383ec

View File

@@ -182,7 +182,7 @@ export const forkEffectScoped = <A, E, R, P = never>(
): Effect.Effect<
Queue.Dequeue<Result<A, E, P>>,
never,
Scope.Scope | R
Scope.Scope | Exclude<R, Progress<P>>
> => Effect.Do.pipe(
Effect.bind("queue", () => Queue.unbounded<Result<A, E, P>>()),
Effect.bind("ref", () => Ref.make<Result<A, E, P>>(initial())),