From fab1f321dcf33f3f8529a24b1de7ae16c57a358b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Thu, 23 Oct 2025 20:45:09 +0200 Subject: [PATCH] pl-fe: fix my small mistake MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-fe/src/queries/accounts/use-relationship.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-fe/src/queries/accounts/use-relationship.ts b/packages/pl-fe/src/queries/accounts/use-relationship.ts index a4ffaf1de..403580700 100644 --- a/packages/pl-fe/src/queries/accounts/use-relationship.ts +++ b/packages/pl-fe/src/queries/accounts/use-relationship.ts @@ -123,7 +123,7 @@ const useUnblockAccountMutation = (accountId: string) => { mutationKey: ['accountRelationships', accountId], mutationFn: () => client.filtering.unblockAccount(accountId), onMutate: () => updateRelationship(accountId, { - blocking: true, + blocking: false, }, queryClient), onError: (_err, _variables, context) => restorePreviousRelationship(accountId, context, queryClient), onSuccess: (data) => {