mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: should display N/A instead of All for unknown types
This commit is contained in:
parent
8fbc2d95a2
commit
7274092a6b
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ export const MarketplaceItemCard: React.FC<MarketplaceItemCardProps> = ({
|
|||
case "package":
|
||||
return t("marketplace:filters.type.package")
|
||||
default:
|
||||
return t("marketplace:filters.type.all")
|
||||
return "N/A"
|
||||
}
|
||||
}, [item.type, t])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue