Skip to content

Commit 751fa1f

Browse files
Copilotrajbos
andcommitted
Remove Models List panel to eliminate redundant information
Co-authored-by: rajbos <6085745+rajbos@users.noreply.github.com>
1 parent 566b464 commit 751fa1f

1 file changed

Lines changed: 1 addition & 21 deletions

File tree

src/App.tsx

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ function App() {
492492
</div>
493493

494494
{/* Model Usage Table */}
495-
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4 mb-6">
495+
<div className="mb-6">
496496
<Card className="p-5">
497497
<h3 className="text-md font-medium mb-3">Requests per Model</h3>
498498
<div className="overflow-auto max-h-60">
@@ -518,26 +518,6 @@ function App() {
518518
</Table>
519519
</div>
520520
</Card>
521-
522-
<Card className="p-5">
523-
<h3 className="text-md font-medium mb-3">Models List</h3>
524-
<div className="overflow-auto max-h-60">
525-
<Table>
526-
<TableHeader>
527-
<TableRow>
528-
<TableHead>Model Name</TableHead>
529-
</TableRow>
530-
</TableHeader>
531-
<TableBody>
532-
{uniqueModels.map((model) => (
533-
<TableRow key={model}>
534-
<TableCell>{model}</TableCell>
535-
</TableRow>
536-
))}
537-
</TableBody>
538-
</Table>
539-
</div>
540-
</Card>
541521
</div>
542522
</div>
543523

0 commit comments

Comments
 (0)