| 34 | import { toast } from "sonner"; |
| 35 | |
| 36 | interface CategoryManagerProps { |
| 37 | categories: Category[]; |
| 38 | } |
| 39 | |
| 40 | export function CategoryManager({ categories }: CategoryManagerProps) { |
| 41 | const [selectedCategory, setSelectedCategory] = useState<Category | null>( |
nothing calls this directly
no outgoing calls
no test coverage detected