diff --git a/src/components/Select.tsx b/src/components/Select.tsx index 07dfe44..7a470f3 100644 --- a/src/components/Select.tsx +++ b/src/components/Select.tsx @@ -103,7 +103,7 @@ function Select({ ); const listClassNames = cn( - "absolute top-full left-0 mt-1 border rounded-[0.375rem] bg-white border-gray-30 text-black shadow-lg z-10 max-h-48 overflow-y-auto", + "absolute top-full left-0 mt-1 border rounded-[0.375rem] bg-white border-gray-30 text-black shadow-lg z-10 max-h-48 overflow-y-auto z-30", ); const handleSelect = (selectedValue: string) => { @@ -164,25 +164,29 @@ function Select({ width: buttonWidth, }} > - {options.map((option) => ( -
  • - -
  • - ))} + + + ); + })} )}