From ae0082ad530ce22d70ab1c09ea26fd1aef65af84 Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Thu, 17 Nov 2022 11:53:34 -0500 Subject: [PATCH] Wrap chat settings in feature flag --- app/soapbox/features/settings/index.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/app/soapbox/features/settings/index.tsx b/app/soapbox/features/settings/index.tsx index ca6be98bc..aab37ed9d 100644 --- a/app/soapbox/features/settings/index.tsx +++ b/app/soapbox/features/settings/index.tsx @@ -101,13 +101,18 @@ const Settings = () => { )} - - - - - - + {features.chats ? ( + <> + + + + + + + + + ) : null}