diff --git a/rsconcept/frontend/src/components/input/combo-multi.tsx b/rsconcept/frontend/src/components/input/combo-multi.tsx index f6646874..a80bc40e 100644 --- a/rsconcept/frontend/src/components/input/combo-multi.tsx +++ b/rsconcept/frontend/src/components/input/combo-multi.tsx @@ -1,5 +1,7 @@ 'use client'; +import assert from 'assert'; + import { useRef, useState } from 'react'; import { ChevronDownIcon } from 'lucide-react'; @@ -9,20 +11,32 @@ import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, Command import { Popover, PopoverContent, PopoverTrigger } from '../ui/popover'; import { cn } from '../utils'; -interface ComboMultiProps