Compare commits

...
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"claude-dev": patch
---
Sorting mcp marketplace by newest listings by default
@@ -20,7 +20,7 @@ const McpMarketplaceView = () => {
const [isRefreshing, setIsRefreshing] = useState(false)
const [searchQuery, setSearchQuery] = useState("")
const [selectedCategory, setSelectedCategory] = useState<string | null>(null)
const [sortBy, setSortBy] = useState<"newest" | "stars" | "name" | "downloadCount">("downloadCount")
const [sortBy, setSortBy] = useState<"newest" | "stars" | "name" | "downloadCount">("newest")
const items = mcpMarketplaceCatalog?.items || []