From 13e908713a089dd57a97959c542d761e7534a23c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Fri, 16 Jan 2026 16:48:25 +0100 Subject: [PATCH] Fix --- packages/example/src/lib/form/TextFieldFormInput.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/example/src/lib/form/TextFieldFormInput.tsx b/packages/example/src/lib/form/TextFieldFormInput.tsx index ffa83d8..b3ba633 100644 --- a/packages/example/src/lib/form/TextFieldFormInput.tsx +++ b/packages/example/src/lib/form/TextFieldFormInput.tsx @@ -20,8 +20,8 @@ export type TextFieldFormInputProps = Props | OptionalProps export class TextFieldFormInput extends Component.makeUntraced("TextFieldFormInput")(function*(props: TextFieldFormInputProps) { const input: ( - | { readonly optional: true } & Form.useOptionalInput.Result - | { readonly optional: false } & Form.useInput.Result + | { readonly optional: true } & Form.useOptionalInput.Success + | { readonly optional: false } & Form.useInput.Success ) = props.optional // biome-ignore lint/correctness/useHookAtTopLevel: "optional" reactivity not supported ? { optional: true, ...yield* Form.useOptionalInput(props.field, props) }