0.2.6 #49

Merged
Thilawyn merged 48 commits from next into master 2026-05-04 02:10:53 +02:00
Showing only changes of commit 441173d536 - Show all commits

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),
)),