From a2fadf1d21d0f219c4ee12bb19e096bfeb39bbd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Thu, 23 Oct 2025 14:57:05 +0200 Subject: [PATCH] pl-fe: fix groups 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/api/hooks/groups/use-group-relationships.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-fe/src/api/hooks/groups/use-group-relationships.ts b/packages/pl-fe/src/api/hooks/groups/use-group-relationships.ts index f6cc6e946..1f3ce1d67 100644 --- a/packages/pl-fe/src/api/hooks/groups/use-group-relationships.ts +++ b/packages/pl-fe/src/api/hooks/groups/use-group-relationships.ts @@ -13,7 +13,7 @@ const useGroupRelationships = (listKey: string[], groupIds: string[]) => { client.experimental.groups.getGroupRelationships(groupIds); const { entityMap: relationships, ...result } = useBatchedEntities( - [Entities.RELATIONSHIPS, ...listKey], + [Entities.GROUP_RELATIONSHIPS, ...listKey], groupIds, fetchGroupRelationships, { enabled: isLoggedIn },