From 82c29f46a59a67bd11b0a81ba2aef0a10c5f6e25 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Mon, 20 Apr 2026 13:08:22 +0200 Subject: [PATCH] fix(ui/alerts): bulk-read body uses instanceIds to match BulkReadRequest DTO Plan 03 prose had 'alertInstanceIds'; backend record is 'instanceIds'. --- ui/src/api/queries/alerts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/api/queries/alerts.ts b/ui/src/api/queries/alerts.ts index d2541c3d..63b167e7 100644 --- a/ui/src/api/queries/alerts.ts +++ b/ui/src/api/queries/alerts.ts @@ -155,7 +155,7 @@ export function useBulkReadAlerts() { '/environments/{envSlug}/alerts/bulk-read', { params: { path: { envSlug: env } }, - body: { alertInstanceIds: ids }, + body: { instanceIds: ids }, } as any, ); if (error) throw error;