File tree Expand file tree Collapse file tree
packages/ui/src/features/inbox/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ export function InboxSearchFilterBar({
8080 >
8181 < Flex direction = "column" gap = "0" >
8282 < InboxFilterAnyItem
83- label = "Any"
8483 active = { sourceProductFilter . length === 0 }
8584 onClick = { clearSourceProductFilter }
8685 />
@@ -144,7 +143,6 @@ export function InboxSearchFilterBar({
144143 >
145144 < Flex direction = "column" gap = "0" >
146145 < InboxFilterAnyItem
147- label = "Any"
148146 active = { priorityFilter . length === 0 }
149147 onClick = { clearPriorityFilter }
150148 />
@@ -177,17 +175,15 @@ export function InboxSearchFilterBar({
177175}
178176
179177function InboxFilterAnyItem ( {
180- label,
181178 active,
182179 onClick,
183180} : {
184- label : string ;
185181 active : boolean ;
186182 onClick : ( ) => void ;
187183} ) {
188184 return (
189185 < button type = "button" className = { FILTER_ITEM_CLASS } onClick = { onClick } >
190- < span className = "truncate" > { label } </ span >
186+ < span className = "truncate" > Any </ span >
191187 { active ? (
192188 < CheckIcon size = { 12 } className = "shrink-0 text-gray-12" />
193189 ) : null }
You can’t perform that action at this time.
0 commit comments