Skip to content

Commit

Permalink
Removes unecessary URI from project list
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahbenizzy committed Feb 28, 2024
1 parent 490b998 commit 601fa92
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions telemetry/ui/src/components/routes/ProjectList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export const ProjectListTable = (props: { projects: Project[] }) => {
<TableHeader>Created</TableHeader>
<TableHeader>Last Run</TableHeader>
<TableHeader>App Runs</TableHeader>
<TableHeader>Path</TableHeader>
<TableHeader></TableHeader>
</TableRow>
</TableHead>
Expand All @@ -37,9 +36,9 @@ export const ProjectListTable = (props: { projects: Project[] }) => {
<DateDisplay date={project.last_written} />
</TableCell>
<TableCell>{project.num_apps}</TableCell>
<TableCell>
{/* <TableCell>
<code className="text-gray-600">{project.uri}</code>
</TableCell>
</TableCell> */}
<TableCell>
<Button color="white" href={`/project/${project.id}`}>
App Runs
Expand Down

0 comments on commit 601fa92

Please sign in to comment.