diff --git a/packages/console/app/src/routes/go/index.css b/packages/console/app/src/routes/go/index.css
index 5650f1b2a54..a1951e24c0c 100644
--- a/packages/console/app/src/routes/go/index.css
+++ b/packages/console/app/src/routes/go/index.css
@@ -598,17 +598,6 @@ body {
white-space: nowrap;
}
- [data-bonus] {
- color: var(--color-text-weak);
- font-size: 12px;
- font-weight: 400;
- line-height: 1;
- white-space: nowrap;
-
- @media (max-width: 40rem) {
- display: none;
- }
- }
}
[data-slot="plot-labels"] {
@@ -684,10 +673,6 @@ body {
stroke: none;
}
- [data-bar][data-kind="promo"] {
- fill: color-mix(in srgb, var(--bar-go) 50%, transparent);
- }
-
[data-val] {
fill: var(--color-text-strong);
font-size: 13px;
diff --git a/packages/console/app/src/routes/go/index.tsx b/packages/console/app/src/routes/go/index.tsx
index 8f7c7197a5e..ebae2817228 100644
--- a/packages/console/app/src/routes/go/index.tsx
+++ b/packages/console/app/src/routes/go/index.tsx
@@ -74,7 +74,7 @@ function LimitsGraph(props: { href: string }) {
{ id: "glm-5.2", name: "GLM-5.2", req: 880, d: "100ms" },
{ id: "deepseek-v4-pro", name: "DeepSeek V4 Pro", req: 1050, d: "150ms" },
{ id: "minimax-m3", name: "MiniMax M3", req: 3200, d: "210ms" },
- { id: "gpt-5.6-luna", name: "GPT 5.6 Luna", req: 4100, baseReq: 2050, d: "290ms" },
+ { id: "gpt-5.6-luna", name: "GPT 5.6 Luna", req: 2050, d: "290ms" },
{ id: "qwen3.7-plus", name: "Qwen3.7 Plus", req: 4300, d: "300ms" },
{ id: "hy3", name: "Hy3", req: 4300, d: "320ms" },
{ id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", req: 7600, d: "330ms" },
@@ -153,23 +153,12 @@ function LimitsGraph(props: { href: string }) {
- {m.baseReq && (
-
- )}
)}
@@ -204,7 +193,6 @@ function LimitsGraph(props: { href: string }) {
>
{m.req.toLocaleString()}
{m.name}
- {m.baseReq && 2x usage}
)}