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

This commit is contained in:
Julien Valverdé
2026-04-29 05:05:54 +02:00
parent aa5ebd4e06
commit a68dc80658

View File

@@ -55,7 +55,8 @@ extends Pipeable.Class() implements SubmittableForm<A, I, R, MA, ME, MR, MP> {
} }
get run(): Effect.Effect<void> { get run(): Effect.Effect<void> {
return this.runSemaphore.withPermits(1)(Stream.runForEach( return this.runSemaphore.withPermits(1)(Effect.provide(
Stream.runForEach(
this.encodedValue.changes, this.encodedValue.changes,
encodedValue => Lens.get(this.validationFiber).pipe( encodedValue => Lens.get(this.validationFiber).pipe(
@@ -82,14 +83,15 @@ extends Pipeable.Class() implements SubmittableForm<A, I, R, MA, ME, MR, MP> {
}), }),
Lens.set(this.validationFiber, Option.none()), Lens.set(this.validationFiber, Option.none()),
), ),
)).pipe( ))
),
Effect.tap(fiber => Lens.set(this.validationFiber, Option.some(fiber))), Effect.tap(fiber => Lens.set(this.validationFiber, Option.some(fiber))),
Effect.andThen(Fiber.join), Effect.andThen(Fiber.join),
Effect.forkScoped, Effect.ignore,
)
), ),
Effect.provide(this.context),
), ),
this.context,
)) ))
} }