diff --git a/frontend/src/lib/components/FlowPreviewResult.svelte b/frontend/src/lib/components/FlowPreviewResult.svelte index 57cdbb8058f4c..4796198e94b5b 100644 --- a/frontend/src/lib/components/FlowPreviewResult.svelte +++ b/frontend/src/lib/components/FlowPreviewResult.svelte @@ -32,6 +32,16 @@ extra, result_streams }: Props = $props() + + // Sometimes the approval form is duplicated but I can't reproduce the issue + // This is a temporary debug log to try to catch it when it happens + // (See the #each below) + $effect(() => + console.log( + 'suspendStatusVal', + Object.entries(suspendStatus.val || {}).map(([k, v]) => [k, v.job.id]) + ) + )