Skip to content

Commit 118e4cd

Browse files
authored
Merge pull request #4 from rajbos/copilot/fix-3
Remove redundant Models List panel
2 parents ea9d7b1 + 751fa1f commit 118e4cd

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
@@ -517,7 +517,7 @@ function App() {
517517
</div>
518518

519519
{/* Model Usage Table */}
520-
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4 mb-6">
520+
<div className="mb-6">
521521
<Card className="p-5">
522522
<h3 className="text-md font-medium mb-3">Requests per Model</h3>
523523
<div className="overflow-auto max-h-60">
@@ -543,26 +543,6 @@ function App() {
543543
</Table>
544544
</div>
545545
</Card>
546-
547-
<Card className="p-5">
548-
<h3 className="text-md font-medium mb-3">Models List</h3>
549-
<div className="overflow-auto max-h-60">
550-
<Table>
551-
<TableHeader>
552-
<TableRow>
553-
<TableHead>Model Name</TableHead>
554-
</TableRow>
555-
</TableHeader>
556-
<TableBody>
557-
{uniqueModels.map((model) => (
558-
<TableRow key={model}>
559-
<TableCell>{model}</TableCell>
560-
</TableRow>
561-
))}
562-
</TableBody>
563-
</Table>
564-
</div>
565-
</Card>
566546
</div>
567547
</div>
568548

0 commit comments

Comments
 (0)