diff --git a/view/next-project/src/components/common/MultiSelect/MultiSelect.tsx b/view/next-project/src/components/common/MultiSelect/MultiSelect.tsx index 754dd41e4..41bc9347d 100644 --- a/view/next-project/src/components/common/MultiSelect/MultiSelect.tsx +++ b/view/next-project/src/components/common/MultiSelect/MultiSelect.tsx @@ -20,9 +20,16 @@ const MultiSelect: React.FC = ({ placeholder, }) => { const [selected, setSelected] = useState<{ value: string; label: string }[]>(values); - + const className = 'rounded-full border border-primary-1 py-2 px-4 w-full'; return (