We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 89eaec7 + 4eb6172 commit 9a40b11Copy full SHA for 9a40b11
1 file changed
src/App.tsx
@@ -867,28 +867,7 @@ function App() {
867
</Card>
868
</div>
869
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
886
- ))}
887
- </TableBody>
888
- </Table>
889
- </div>
890
- </Card>
891
+
892
893
894
<div>
0 commit comments