diff options
| author | David Hill <[email protected]> | 2026-03-04 22:16:30 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-03-04 22:16:30 +0000 |
| commit | f8685a4d532386b7c30112454a89fc5ab884e7d1 (patch) | |
| tree | eee7b08476bc56fd0d748d5b85b3e129d6db6c8c /packages/console/app/src | |
| parent | 6cbb1ef1c233c6579f94552c796d4239781c620a (diff) | |
| download | opencode-f8685a4d532386b7c30112454a89fc5ab884e7d1.tar.gz opencode-f8685a4d532386b7c30112454a89fc5ab884e7d1.zip | |
tui: clarify free tier includes Big Pickle and promotional requests on Go pricing page
Diffstat (limited to 'packages/console/app/src')
| -rw-r--r-- | packages/console/app/src/i18n/en.ts | 1 | ||||
| -rw-r--r-- | packages/console/app/src/routes/go/index.tsx | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/packages/console/app/src/i18n/en.ts b/packages/console/app/src/i18n/en.ts index 9bf8ad43d..5227b3f54 100644 --- a/packages/console/app/src/i18n/en.ts +++ b/packages/console/app/src/i18n/en.ts @@ -258,6 +258,7 @@ export const dict = { "go.cta.price": "$10/month", "go.pricing.body": "Use with any agent. Top up credit if needed. Cancel any time.", "go.graph.free": "Free", + "go.graph.freePill": "Big Pickle and promotional", "go.graph.go": "Go", "go.graph.label": "Requests/5h", "go.graph.usageLimits": "Usage limits", diff --git a/packages/console/app/src/routes/go/index.tsx b/packages/console/app/src/routes/go/index.tsx index 6ae5e476c..eb954bd99 100644 --- a/packages/console/app/src/routes/go/index.tsx +++ b/packages/console/app/src/routes/go/index.tsx @@ -67,7 +67,7 @@ function LimitsGraph(props: { href: string }) { const x = (r: number) => left + base + Math.pow(log(r) / log(rmax), p) * (plot - base) const start = (x(1) / w) * 100 - const ticks = [1, 2, 5, 10, 25, 50, 100].filter((t) => t <= rmax) + const ticks = [1, 5, 10, 25, 50, 100].filter((t) => t <= rmax) const labels = (() => { const set = new Set<number>() let last = -Infinity @@ -162,7 +162,7 @@ function LimitsGraph(props: { href: string }) { <div data-slot="pills" aria-hidden="true"> <span data-item data-kind="free" style={{ "--x": px(x(1)), "--y": py(fy), "--d": "0ms" } as any}> - <span data-name>{i18n.t("go.graph.free")}</span> + <span data-name>{i18n.t("go.graph.freePill")}</span> <span data-value>{free.toLocaleString()}</span> </span> <For each={models}> |
