diff --git a/components/ui/category-combobox.tsx b/components/ui/category-combobox.tsx
index 752c5e8..49479a4 100644
--- a/components/ui/category-combobox.tsx
+++ b/components/ui/category-combobox.tsx
@@ -206,12 +206,9 @@ export function CategoryCombobox({
handleSelect(null)}>
Aucune catégorie
-
+ {value === null && (
+
+ )}
@@ -227,12 +224,9 @@ export function CategoryCombobox({
size={16}
/>
{parent.name}
-
+ {value === parent.id && (
+
+ )}
{childrenByParent[parent.id]?.map((child) => (
{child.name}
-
+ {value === child.id && (
+
+ )}
))}