style(ui): format Top Virtual Keys aggregation test

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Devin AI 2026-09-17 22:46:21 +00:00 committed by ryan-crabbe-berri
parent 88799f6f80
commit 107ec2706b

View file

@ -79,9 +79,7 @@ vi.mock("@/components/UsagePage/components/EntityUsage/TopKeyView", () => ({
default: ({ topKeys }: { topKeys: { api_key: string; user?: string | null; spend: number }[] }) => (
<div>
<span>Top Keys</span>
<span>
{`top-keys:${topKeys.map((row) => `${row.api_key}=${row.spend}=${row.user ?? "-"}`).join("|")}`}
</span>
<span>{`top-keys:${topKeys.map((row) => `${row.api_key}=${row.spend}=${row.user ?? "-"}`).join("|")}`}</span>
</div>
),
}));