From 1758b7837ed37acab832f1137680fdff630d23c5 Mon Sep 17 00:00:00 2001 From: Ardeman Date: Tue, 4 Mar 2025 12:03:02 +0800 Subject: [PATCH] fix: update variable names in Combobox component for clarity --- app/components/ui/combobox.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/ui/combobox.tsx b/app/components/ui/combobox.tsx index 402f125..1e8c9a2 100644 --- a/app/components/ui/combobox.tsx +++ b/app/components/ui/combobox.tsx @@ -96,14 +96,14 @@ export const Combobox = >( 'bg-white transition duration-100 ease-in data-[leave]:data-[closed]:opacity-0', )} > - {filteredOptions?.map((person) => ( + {filteredOptions?.map((option) => ( -
{person.name}
+
{option.name}
))}