fix(filters): inherit tag color for the search-term link

The active search pill renders its term through a Chakra Link, which
painted link-blue while every sibling filter pill renders the tag
contrast color. Set color=inherit so the term matches the other tags;
the hover underline now draws in the tag's own color too.
This commit is contained in:
2026-09-06 16:41:02 -04:00
parent e85bdabf10
commit 19a80d1c74
+1
View File
@@ -80,6 +80,7 @@ const ActiveFilters = () => {
) )
}} }}
><Link ><Link
color="inherit"
onMouseDown={() => setSearchModalOpen.set(true)}>{searchParams}</Link> onMouseDown={() => setSearchModalOpen.set(true)}>{searchParams}</Link>
</Tag> </Tag>
</> </>