From aab55f6131be331fa826af315af05f0b3552aa22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Wed, 13 Aug 2025 10:25:14 +0200 Subject: [PATCH] pl-fe: why did i ever push this 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/hooks/use-features.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-fe/src/hooks/use-features.ts b/packages/pl-fe/src/hooks/use-features.ts index bec4b9c90..41739a62c 100644 --- a/packages/pl-fe/src/hooks/use-features.ts +++ b/packages/pl-fe/src/hooks/use-features.ts @@ -8,6 +8,6 @@ import { useAppSelector } from './use-app-selector'; (window as any).plapi = plapi; /** Get features for the current instance. */ -const useFeatures = (): Features => ({ ...useAppSelector(state => state.auth.client.features), emojiReacts: true, emojiReactsList: true }); +const useFeatures = (): Features => useAppSelector(state => state.auth.client.features); export { useFeatures };