From 3b2b3057ed6ff06b2fae1b6749b5e297487c50c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Wed, 11 Mar 2026 21:47:25 +0100 Subject: [PATCH] pl-api: fix notification request accepting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-api/lib/client/notifications.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-api/lib/client/notifications.ts b/packages/pl-api/lib/client/notifications.ts index 740961c9b..7868fa7c8 100644 --- a/packages/pl-api/lib/client/notifications.ts +++ b/packages/pl-api/lib/client/notifications.ts @@ -167,7 +167,7 @@ const notifications = (client: PlApiBaseClient) => ({ */ acceptNotificationRequest: async (notificationRequestId: string) => { const response = await client.request( - `/api/v1/notifications/requests/${notificationRequestId}/dismiss`, + `/api/v1/notifications/requests/${notificationRequestId}/accept`, { method: 'POST' }, );