mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
style(ui): fix prettier formatting on auto-router quality signals files
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
1669e23985
commit
2580aaa65f
2 changed files with 4 additions and 2 deletions
|
|
@ -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);
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -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 (
|
||||
<>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue