diff --git a/src/frontend/src/components/tagsSelectorComponent/index.tsx b/src/frontend/src/components/tagsSelectorComponent/index.tsx index 95bcc1101..b3a79a86e 100644 --- a/src/frontend/src/components/tagsSelectorComponent/index.tsx +++ b/src/frontend/src/components/tagsSelectorComponent/index.tsx @@ -26,35 +26,38 @@ export function TagsSelector({ return ( - {!loadingTags && - tags.map((tag, idx) => ( - - ))} + category === tag.name) + ? "min-w-min bg-beta-foreground text-background hover:bg-beta-foreground" + : "", + )} + > + {tag.name} + + + )) + : []} ); }