diff --git a/web/src/components/InterviewCard.vue b/web/src/components/InterviewCard.vue index 7a8561f..4d7d407 100644 --- a/web/src/components/InterviewCard.vue +++ b/web/src/components/InterviewCard.vue @@ -92,11 +92,11 @@ async function reclassifySignal(sig: StageSignal, newLabel: StageSignal['stage_s await useApiFetch(`/api/stage-signals/${sig.id}/dismiss`, { method: 'POST' }) // Digest-only: add to browsable queue (fire-and-forget; sig.id === job_contacts.id) if (newLabel === 'digest') { - useApiFetch('/api/digest-queue', { + void useApiFetch('/api/digest-queue', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ job_contact_id: sig.id }), - }).catch(() => {}) + }) } } else { const prev = sig.stage_signal diff --git a/web/src/views/InterviewsView.vue b/web/src/views/InterviewsView.vue index f3f829b..15b29df 100644 --- a/web/src/views/InterviewsView.vue +++ b/web/src/views/InterviewsView.vue @@ -110,11 +110,11 @@ async function reclassifyPreSignal(job: PipelineJob, sig: StageSignal, newLabel: await useApiFetch(`/api/stage-signals/${sig.id}/dismiss`, { method: 'POST' }) // Digest-only: add to browsable queue (fire-and-forget; sig.id === job_contacts.id) if (newLabel === 'digest') { - useApiFetch('/api/digest-queue', { + void useApiFetch('/api/digest-queue', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ job_contact_id: sig.id }), - }).catch(() => {}) + }) } } else { const prev = sig.stage_signal