Skip to content

Commit 0ae2dc3

Browse files
pashpashpashCline Evaluation
andauthored
Sorting mcp marketplace by newest by default (RooCodeInc#4141)
* sorting mcp marketplace by newest by default * sorting mcp marketplace by newest by default --------- Co-authored-by: Cline Evaluation <[email protected]>
1 parent 1e06cf0 commit 0ae2dc3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/calm-snails-hammer.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"claude-dev": patch
3+
---
4+
5+
Sorting mcp marketplace by newest listings by default

webview-ui/src/components/mcp/configuration/tabs/marketplace/McpMarketplaceView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const McpMarketplaceView = () => {
2020
const [isRefreshing, setIsRefreshing] = useState(false)
2121
const [searchQuery, setSearchQuery] = useState("")
2222
const [selectedCategory, setSelectedCategory] = useState<string | null>(null)
23-
const [sortBy, setSortBy] = useState<"newest" | "stars" | "name" | "downloadCount">("downloadCount")
23+
const [sortBy, setSortBy] = useState<"newest" | "stars" | "name" | "downloadCount">("newest")
2424

2525
const items = mcpMarketplaceCatalog?.items || []
2626

0 commit comments

Comments
 (0)