From a8854b544254b213d99d6412aeb8108beb1f43af Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Mon, 22 Sep 2025 19:57:37 -0500 Subject: [PATCH] Fix compilation error HeadlessUI changed the type declaration of Combobox onChange https://github.com/tailwindlabs/headlessui/pull/3781 --- ui/src/components/MacroStepCard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/components/MacroStepCard.tsx b/ui/src/components/MacroStepCard.tsx index cf22468b..c795520d 100644 --- a/ui/src/components/MacroStepCard.tsx +++ b/ui/src/components/MacroStepCard.tsx @@ -207,8 +207,8 @@ export function MacroStepCard({ )}
{ - onKeySelect(value); + onChange={(value) => { + onKeySelect({ value: value as string | null }); onKeyQueryChange(''); }} displayValue={() => keyQuery}