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

This commit is contained in:
Julien Valverdé
2026-05-02 00:14:31 +02:00
parent 52c6189179
commit 441173d536

View File

@@ -135,9 +135,9 @@ export class SynchronizedFormImpl<
Effect.andThen(Effect.fail(e)),
)),
Effect.tap(value => Effect.ensuring(
Effect.andThen(
Lens.set(this.isCommitting, true),
Lens.set(this.target, value),
Lens.set(this.isCommitting, true).pipe(
Effect.andThen(Lens.set(this.issues, Array.empty())),
Effect.andThen(Lens.set(this.target, value)),
),
Lens.set(this.isCommitting, false),
)),