Skip to content

Commit 9a40b11

Browse files
authored
Merge pull request #93 from rajbos/main
Remove Models List section from main page (#20)
2 parents 89eaec7 + 4eb6172 commit 9a40b11

1 file changed

Lines changed: 1 addition & 22 deletions

File tree

src/App.tsx

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -867,28 +867,7 @@ function App() {
867867
</Card>
868868
</div>
869869

870-
{/* Models List Card */}
871-
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4 mb-6">
872-
<Card className="p-5">
873-
<h3 className="text-md font-medium mb-3">Models List</h3>
874-
<div className="overflow-auto max-h-60">
875-
<Table>
876-
<TableHeader>
877-
<TableRow>
878-
<TableHead>Model Name</TableHead>
879-
</TableRow>
880-
</TableHeader>
881-
<TableBody>
882-
{uniqueModels.map((model) => (
883-
<TableRow key={model}>
884-
<TableCell>{model}</TableCell>
885-
</TableRow>
886-
))}
887-
</TableBody>
888-
</Table>
889-
</div>
890-
</Card>
891-
</div>
870+
892871
</div>
893872

894873
<div>

0 commit comments

Comments
 (0)