From 1c5dcd68eddb7296fc8d6ce2524af4eab6cbf7fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Wed, 11 Mar 2026 21:49:46 +0100 Subject: [PATCH] pl-api: fix tags featuring 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/my-account.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/pl-api/lib/client/my-account.ts b/packages/pl-api/lib/client/my-account.ts index b9b0af05a..f11c4a5cd 100644 --- a/packages/pl-api/lib/client/my-account.ts +++ b/packages/pl-api/lib/client/my-account.ts @@ -166,7 +166,7 @@ const myAccount = (client: PlApiBaseClient & { accounts: ReturnType { - const response = await client.request('/api/v1/featured_tags', { + unfeatureTag: async (featuredTagId: string) => { + const response = await client.request(`/api/v1/featured_tags/${featuredTagId}`, { method: 'DELETE', - body: { name }, }); return response.json;