Skip to content

Commit

Permalink
Merge pull request #26293 from Expensify/georgia-FABfix
Browse files Browse the repository at this point in the history
Fix FAB not appearing

(cherry picked from commit 6d77b3f)
  • Loading branch information
amyevans authored and OSBotify committed Aug 30, 2023
1 parent 68765b9 commit bbaea37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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});
Expand Down

0 comments on commit bbaea37

Please sign in to comment.