Skip to content

Commit

Permalink
removes comments out code in layout
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzelei committed Nov 2, 2023
1 parent 74b7277 commit 5c1ff56
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions frontend/app/jobs/[id]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,37 +129,6 @@ export default function JobIdLayout({ children, params }: LayoutProps) {
</div>
</OverviewContainer>
);

// return (
// <div className="py-5">
// <div className="flex flex-col gap-1">
// <h2 className="text-2xl font-bold tracking-tight">Job Overview</h2>
// <PageHeader
// header={data?.job?.name || ''}
// description={data?.job?.id || ''}
// extraHeading={
// <div className="flex flex-row space-x-4">
// <DeleteConfirmationDialog
// trigger={
// <Button variant="destructive">
// <ButtonText leftIcon={<TrashIcon />} text="Delete Job" />
// </Button>
// }
// headerText="Are you sure you want to delete this job?"
// description="Deleting this job will also delete all job runs."
// onConfirm={async () => onDelete()}
// />
// <Button onClick={() => onTriggerJobRun()}>Trigger Run</Button>
// </div>
// }
// />
// </div>
// <div className="flex flex-col gap-6">
// <SubNav items={sidebarNavItems} />
// <div>{children}</div>
// </div>
// </div>
// );
}

async function removeJob(jobId: string): Promise<void> {
Expand Down

0 comments on commit 5c1ff56

Please sign in to comment.