diff --git a/src/components/Dropdown.tsx b/src/components/Dropdown.tsx index 9ebef561..a73ad138 100644 --- a/src/components/Dropdown.tsx +++ b/src/components/Dropdown.tsx @@ -15,45 +15,47 @@ interface DropdownProps { } export function Dropdown(props: DropdownProps) { -
- - {({ open }) => ( - <> - - {props.selectedItem.name} - - - - - - - {props.options.map((opt) => ( - - `relative cursor-default select-none py-2 pl-10 pr-4 ${ - active ? "bg-denim-400 text-bink-700" : "text-white" - }` - } - key={opt.id} - value={opt} - > - {opt.name} - - ))} - - - - )} - -
; + return ( +
+ + {({ open }) => ( + <> + + {props.selectedItem.name} + + + + + + + {props.options.map((opt) => ( + + `relative cursor-default select-none py-2 pl-10 pr-4 ${ + active ? "bg-denim-400 text-bink-700" : "text-white" + }` + } + key={opt.id} + value={opt} + > + {opt.name} + + ))} + + + + )} + +
+ ) }