diff --git a/front/pages/w/[wId]/a/[aId]/runs/index.tsx b/front/pages/w/[wId]/a/[aId]/runs/index.tsx index 7b054835caff..a498d1c7a16e 100644 --- a/front/pages/w/[wId]/a/[aId]/runs/index.tsx +++ b/front/pages/w/[wId]/a/[aId]/runs/index.tsx @@ -88,7 +88,9 @@ export default function RunsView({ wIdTarget, gaTrackingId, }: InferGetServerSidePropsType) { - const [runType, setRunType] = useState("local" as RunRunType); + const [runType, setRunType] = useState( + (wIdTarget ? "deploy" : "local") as RunRunType + ); const [limit] = useState(10); const [offset, setOffset] = useState(0);