From b1ccec1cf5b90018f409dbd62f42d3082d988660 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 28 Aug 2020 13:27:54 -0500 Subject: [PATCH] Chats: hide FAB on chat pages --- app/soapbox/features/ui/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/features/ui/index.js b/app/soapbox/features/ui/index.js index 084c8a0cf..67570cbec 100644 --- a/app/soapbox/features/ui/index.js +++ b/app/soapbox/features/ui/index.js @@ -158,7 +158,7 @@ const LAYOUT = { }, }; -const shouldHideFAB = path => path.match(/^\/posts\/|^\/search|^\/getting-started/); +const shouldHideFAB = path => path.match(/^\/posts\/|^\/search|^\/getting-started|^\/chats/); class SwitchingColumnsArea extends React.PureComponent {