From c15269d125e9065197fee58b3e427f8b7dd800d5 Mon Sep 17 00:00:00 2001 From: Georgia Monahan Date: Wed, 30 Aug 2023 15:10:05 +0100 Subject: [PATCH] Fix FAB not appearing --- .../sidebar/SidebarScreen/FloatingActionButtonAndPopover.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js b/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js index 1166fb3ebefc..0e8553b00dd0 100644 --- a/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js +++ b/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js @@ -159,7 +159,7 @@ function FloatingActionButtonAndPopover(props) { return; } // Avoid rendering the create menu for first-time users until they have dismissed the download app banner (mWeb only). - if (props.shouldShowDownloadAppBanner || Browser.isMobile()) { + if (props.shouldShowDownloadAppBanner && Browser.isMobile()) { return; } Welcome.show({routes, showCreateMenu});