11import { StopIcon } from "@heroicons/react/24/outline" ;
22import { CheckIcon } from "@heroicons/react/24/solid" ;
3- import { useJob } from "~/hooks/useJob" ;
4- import { useOrganization } from "~/hooks/useOrganizations" ;
5- import { useProject } from "~/hooks/useProject" ;
6- import { RunList } from "~/presenters/RunListPresenter.server" ;
3+ import { JobRunStatus , RuntimeEnvironmentType } from "@trigger.dev/database" ;
74import { formatDuration } from "~/utils" ;
8- import { JobForPath , OrgForPath , ProjectForPath , jobRunDashboardPath } from "~/utils/pathBuilder" ;
95import { EnvironmentLabel } from "../environments/EnvironmentLabel" ;
10- import { Callout } from "../primitives/Callout" ;
116import { DateTime } from "../primitives/DateTime" ;
7+ import { Paragraph } from "../primitives/Paragraph" ;
128import { Spinner } from "../primitives/Spinner" ;
139import {
1410 Table ,
@@ -21,7 +17,6 @@ import {
2117 TableRow ,
2218} from "../primitives/Table" ;
2319import { RunStatus } from "./RunStatuses" ;
24- import { JobRunStatus , RuntimeEnvironmentType } from "@trigger.dev/database" ;
2520
2621type RunTableItem = {
2722 id : string ;
@@ -129,9 +124,7 @@ export function RunsTable({
129124function NoRuns ( { title } : { title : string } ) {
130125 return (
131126 < div className = "flex items-center justify-center" >
132- < Callout variant = "info" className = "w-auto" >
133- { title }
134- </ Callout >
127+ < Paragraph className = "w-auto" > { title } </ Paragraph >
135128 </ div >
136129 ) ;
137130}
0 commit comments