Add pizzzaz to homepage (#3595)

Co-authored-by: Suchintan Singh <suchintan@skyvern.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Suchintan
2025-10-02 16:13:43 -04:00
committed by GitHub
parent f68aa014d0
commit a7025fc9b7
5 changed files with 39 additions and 10 deletions

View File

@@ -2136,7 +2136,6 @@ function convert(workflow: WorkflowApiResponse): WorkflowCreateYAMLRequest {
blocks: convertBlocksToBlockYAML(workflow.workflow_definition.blocks),
},
is_saved_task: workflow.is_saved_task,
status: workflow.status,
run_with: workflow.run_with,
cache_key: workflow.cache_key,
ai_fallback: workflow.ai_fallback ?? undefined,

View File

@@ -524,7 +524,6 @@ export type WorkflowApiResponse = {
totp_verification_url: string | null;
totp_identifier: string | null;
max_screenshot_scrolls: number | null;
status: string | null;
created_at: string;
modified_at: string;
deleted_at: string | null;

View File

@@ -14,7 +14,6 @@ export type WorkflowCreateYAMLRequest = {
is_saved_task?: boolean;
max_screenshot_scrolls?: number | null;
extra_http_headers?: Record<string, string> | null;
status?: string | null;
run_with?: string | null;
cache_key?: string | null;
ai_fallback?: boolean;