diff --git a/apps/web/src/app/app/[workspaceSlug]/onboarding/page.tsx b/apps/web/src/app/app/[workspaceSlug]/onboarding/page.tsx index 8526afde65..5c30202848 100644 --- a/apps/web/src/app/app/[workspaceSlug]/onboarding/page.tsx +++ b/apps/web/src/app/app/[workspaceSlug]/onboarding/page.tsx @@ -38,6 +38,8 @@ export default async function Onboarding({
diff --git a/apps/web/src/components/forms/monitor/form.tsx b/apps/web/src/components/forms/monitor/form.tsx index 1f5545b2a2..664c811798 100644 --- a/apps/web/src/components/forms/monitor/form.tsx +++ b/apps/web/src/components/forms/monitor/form.tsx @@ -47,6 +47,7 @@ interface Props { tags?: MonitorTag[]; pages?: Page[]; nextUrl?: string; + withTestButton?: boolean; } const ABORT_TIMEOUT = 7_000; // in ms @@ -59,6 +60,7 @@ export function MonitorForm({ pages, tags, nextUrl, + withTestButton = true, }: Props) { const _assertions = defaultValues?.assertions ? assertions.deserialize(defaultValues?.assertions).map((a) => a.schema) @@ -310,7 +312,9 @@ export function MonitorForm({ ) : null}
- + {withTestButton ? ( + + ) : null}