From d1596c56039b49a0d86e93d1323392bb3cd92bdc Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 12 Feb 2026 18:27:34 +0000 Subject: [PATCH] check nit --- frontend/src/lib/components/runs/JobRunsPreview.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/runs/JobRunsPreview.svelte b/frontend/src/lib/components/runs/JobRunsPreview.svelte index 4239131277..f0b71b4770 100644 --- a/frontend/src/lib/components/runs/JobRunsPreview.svelte +++ b/frontend/src/lib/components/runs/JobRunsPreview.svelte @@ -83,7 +83,7 @@ // Only show error state if we couldn't load the job data // If the job failed but we have the job object, let it display normally if (!currentJob) { - loadError = error?.body || error?.message || 'Failed to load job details' + loadError = (error as any)?.body || error?.message || 'Failed to load job details' } isLoadingJobDetails = false },