Skip to content

Commit 27447ba

Browse files
committed
wip: zen
1 parent 45ac20b commit 27447ba

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/console/app/src/i18n/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export const dict = {
258258
"go.cta.price": "$10/month",
259259
"go.pricing.body": "Use with any agent. Top up credit if needed. Cancel any time.",
260260
"go.graph.free": "Free",
261-
"go.graph.freePill": "Big Pickle and promotional",
261+
"go.graph.freePill": "Big Pickle and free models",
262262
"go.graph.go": "Go",
263263
"go.graph.label": "Requests per 5 hour",
264264
"go.graph.usageLimits": "Usage limits",

packages/console/app/src/routes/go/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ function LimitsGraph(props: { href: string }) {
169169

170170
<div data-slot="pills" aria-hidden="true">
171171
<span data-item data-kind="free" style={{ "--x": px(x(1)), "--y": py(fy), "--d": "0ms" } as any}>
172-
<span data-name>{i18n.t("go.graph.freePill")}</span>
173172
<span data-value>{free.toLocaleString()}</span>
173+
<span data-name>{i18n.t("go.graph.freePill")}</span>
174174
</span>
175175
<For each={models}>
176176
{(m, i) => (
@@ -180,8 +180,8 @@ function LimitsGraph(props: { href: string }) {
180180
data-model={m.id}
181181
style={{ "--x": px(x(ratio(m.req))), "--y": py(gy(i())), "--d": m.d } as any}
182182
>
183-
<span data-name>{m.name}</span>
184183
<span data-value>{m.req.toLocaleString()}</span>
184+
<span data-name>{m.name}</span>
185185
</span>
186186
)}
187187
</For>

0 commit comments

Comments
 (0)