Skip to content

Commit 18ba80f

Browse files
committed
fix(stats): remove leaderboard nav link
1 parent 882d028 commit 18ba80f

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

packages/stats/app/src/routes/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ const statsHomeFallbackUrl = "https://stats.opencode.ai"
3838
const statsUnfurlAlt = "OpenCode Stats wordmark on a dark patterned background"
3939
const headerLinks = [
4040
{ href: "#top-models", label: "Top Models" },
41-
{ href: "#leaderboard", label: "Leaderboard" },
4241
{ href: "#session-cost", label: "Session Cost" },
4342
{ href: "#token-cost", label: "Token Cost" },
4443
{ href: "#cache-ratio", label: "Cache Ratio" },
@@ -1465,7 +1464,7 @@ function SessionCostSection(props: { data: StatsHomeData["sessionCost"] }) {
14651464

14661465
return (
14671466
<section id="session-cost" data-section="session-cost">
1468-
<SectionBridge label="LEADERBOARD" href="#leaderboard" />
1467+
<SectionBridge label="TOP MODELS" href="#top-models" />
14691468
<SectionTitle title="Session Cost" description="Average cost per session." />
14701469
<Show
14711470
when={visible().length > 0}
@@ -1721,7 +1720,6 @@ function Footer(props: {
17211720
const [subscribeOpen, setSubscribeOpen] = createSignal(false)
17221721
const modelStats = [
17231722
{ href: "#top-models", label: "Top Models" },
1724-
{ href: "#leaderboard", label: "Leaderboard" },
17251723
{ href: "#session-cost", label: "Session Cost" },
17261724
{ href: "#token-cost", label: "Token Cost" },
17271725
{ href: "#cache-ratio", label: "Cache Ratio" },

0 commit comments

Comments
 (0)