From 9f4b3a1be59ea0e4fe64d0b809c24b604dc336bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Tue, 31 Mar 2026 20:44:25 +0200 Subject: [PATCH] Fix --- packages/effect-fc/src/Form.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/effect-fc/src/Form.ts b/packages/effect-fc/src/Form.ts index c19f782..b339fcc 100644 --- a/packages/effect-fc/src/Form.ts +++ b/packages/effect-fc/src/Form.ts @@ -302,14 +302,14 @@ export const focusTupleAt: {

( self: Form, index: K, - ): Form + ): Form

( index: K, - ): (self: Form) => Form + ): (self: Form) => Form } = Function.dual(2,

( self: Form, index: K, -): Form => { +): Form => { const form = self as FormImpl const path = [...form.path, index] as const