From 25dd8bd168c73a31dbad490c8202e8781e501605 Mon Sep 17 00:00:00 2001 From: James Ritchie Date: Tue, 2 Jul 2024 18:00:10 +0100 Subject: [PATCH] Blank state now using the info panel --- .../route.tsx | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.runs._index/route.tsx b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.runs._index/route.tsx index 5f086d689..128aaa1f0 100644 --- a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.runs._index/route.tsx +++ b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.runs._index/route.tsx @@ -40,6 +40,7 @@ import { ProjectParamSchema, v3ProjectPath, v3RunsPath, v3TestPath } from "~/uti import { ListPagination } from "../../components/ListPagination"; import { BULK_ACTION_RUN_LIMIT } from "~/consts"; import { findProjectBySlug } from "~/models/project.server"; +import { InfoPanel } from "~/components/primitives/InfoPanel"; export const loader = async ({ request, params }: LoaderFunctionArgs) => { const userId = await requireUserId(request); @@ -341,22 +342,21 @@ function CreateFirstTaskInstructions() { const organization = useOrganization(); const project = useProject(); return ( - - - + + + Before running a task, you must first create one. Follow the instructions on the{" "} Tasks page to create a task, then return here to run it. - - Create your first task - - + ); }