Skip to content

Commit

Permalink
Remove Status column on import modal
Browse files Browse the repository at this point in the history
  • Loading branch information
dadmobile committed Apr 30, 2024
1 parent 3e1fd20 commit 83ff3ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/components/ModelZoo/ImportFromHFCacheModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default function ImportFromHFCacheModal({ open, setOpen}) {
<th style={{ width: 175, padding: 12 }}>Model ID</th>
<th style={{ width: 100, padding: 12 }}>Source</th>
<th style={{ width: 120, padding: 12 }}>Architecture</th>
<th style={{ width: 100, padding: 12 }}>Status</th>
<th style={{ width: 75, padding: 12 }}>Supported</th>
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -144,7 +144,7 @@ export default function ImportFromHFCacheModal({ open, setOpen}) {
</td>
<td>
<Typography ml={2} fontWeight={row.supported ? "lg" : "sm"}>
{row.status}
{row.supported ? "Yes" : "No"}
</Typography>
</td>
</tr>
Expand Down

0 comments on commit 83ff3ed

Please sign in to comment.