11import { conform , useForm } from "@conform-to/react" ;
22import { parse } from "@conform-to/zod" ;
33import { BeakerIcon , RectangleStackIcon } from "@heroicons/react/20/solid" ;
4- import { ClockIcon } from "@heroicons/react/24/outline" ;
54import { type ActionFunction , type LoaderFunctionArgs , json } from "@remix-run/server-runtime" ;
65import { useCallback , useEffect , useRef , useState , useMemo } from "react" ;
76import { typedjson , useTypedLoaderData } from "remix-typedjson" ;
@@ -57,6 +56,7 @@ import { RunTagInput } from "~/components/runs/v3/RunTagInput";
5756import { type loader as queuesLoader } from "~/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues" ;
5857import { DateTime } from "~/components/primitives/DateTime" ;
5958import { TaskRunStatusCombo } from "~/components/runs/v3/TaskRunStatus" ;
59+ import { ClockRotateLeftIcon } from "~/assets/icons/ClockRotateLeftIcon" ;
6060
6161export const loader = async ( { request, params } : LoaderFunctionArgs ) => {
6262 const userId = await requireUserId ( request ) ;
@@ -1118,7 +1118,7 @@ function RecentRunsPopover<T extends StandardRun | ScheduledRun>({
11181118 < Button
11191119 type = "button"
11201120 variant = "tertiary/small"
1121- LeadingIcon = { ClockIcon }
1121+ LeadingIcon = { ClockRotateLeftIcon }
11221122 disabled = { true }
11231123 >
11241124 Recent runs
@@ -1127,7 +1127,7 @@ function RecentRunsPopover<T extends StandardRun | ScheduledRun>({
11271127 content = "No runs yet"
11281128 />
11291129 ) : (
1130- < Button type = "button" variant = "tertiary/small" LeadingIcon = { ClockIcon } >
1130+ < Button type = "button" variant = "tertiary/small" LeadingIcon = { ClockRotateLeftIcon } >
11311131 Recent runs
11321132 </ Button >
11331133 ) }
0 commit comments