diff --git a/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.tsx b/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.tsx index 428b0d52b6f5..0d0908a1ff9c 100644 --- a/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.tsx +++ b/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.tsx @@ -323,7 +323,9 @@ function FloatingActionButtonAndPopover( ), ); if (!hasSeenTrackTraining && !isOffline) { - Navigation.navigate(ROUTES.TRACK_TRAINING_MODAL); + setTimeout(() => { + Navigation.navigate(ROUTES.TRACK_TRAINING_MODAL); + }, CONST.ANIMATED_TRANSITION); } }, },