From 9ae53516aa1b116a6b30e07423d0ab8b93ff94ac Mon Sep 17 00:00:00 2001 From: Jules Rosser Date: Tue, 26 Mar 2024 14:08:46 +0000 Subject: [PATCH] default to requestMoney, to fix crash on app start --- .../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 117083293b5db..9f0f4bd9a7607 100644 --- a/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js +++ b/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js @@ -78,7 +78,7 @@ const getQuickActionTitle = (action) => { case CONST.QUICK_ACTIONS.ASSIGN_TASK: return 'quickAction.assignTask'; default: - return ''; + return 'quickAction.requestMoney'; } };