Refactor Form
Lint / lint (push) Successful in 12s

This commit is contained in:
Julien Valverdé
2025-10-27 18:11:11 +01:00
parent 12878cd76b
commit 86e8a7bd92
2 changed files with 11 additions and 15 deletions
+1 -1
View File
@@ -140,7 +140,7 @@ export const toExit = <A, E, P>(
}
}
export const forkEffect = <A, E, R>(
export const forkEffectScoped = <A, E, R>(
effect: Effect.Effect<A, E, R>
): Effect.Effect<Queue.Dequeue<Result<A, E>>, never, Scope.Scope | R> => Queue.unbounded<Result<A, E>>().pipe(
Effect.tap(Queue.offer(initial())),