style(ui): fix prettier formatting on auto-router quality signals files

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Abhimanyu Kapur 2026-08-08 09:42:34 -07:00
parent 1669e23985
commit 2580aaa65f
2 changed files with 4 additions and 2 deletions

View file

@ -339,7 +339,9 @@ describe("AutoRouterBenchmarksTab", () => {
renderTab();
expect(
screen.getAllByText("Non-router traffic isn't sending session IDs, so it can't be grouped into sessions to compare"),
screen.getAllByText(
"Non-router traffic isn't sending session IDs, so it can't be grouped into sessions to compare",
),
).toHaveLength(2);
});

View file

@ -314,7 +314,7 @@ const BenchmarksBody: React.FC<BenchmarksBodyProps> = ({ isPending, error, data,
const stats = view.stats;
const selectedGroup = data.groups.find((g) => groupKey(g) === selectedKey);
const signals = qualityData
? signalsFor(qualityData, selectedKey === ALL_ROUTERS ? null : (selectedGroup?.router_name ?? null))
? signalsFor(qualityData, selectedKey === ALL_ROUTERS ? null : selectedGroup?.router_name ?? null)
: undefined;
return (
<>