@@ -5,7 +5,6 @@ import type {EdgeInsets} from 'react-native-safe-area-context';
55import type { ValueOf } from 'type-fest' ;
66import LHNOptionsList from '@components/LHNOptionsList/LHNOptionsList' ;
77import OptionsListSkeletonView from '@components/OptionsListSkeletonView' ;
8- import useConfirmReadyToOpenApp from '@hooks/useConfirmReadyToOpenApp' ;
98import useOnyx from '@hooks/useOnyx' ;
109import useResponsiveLayout from '@hooks/useResponsiveLayout' ;
1110import useStyleUtils from '@hooks/useStyleUtils' ;
@@ -41,8 +40,6 @@ function SidebarLinks({insets, optionListItems, priorityMode = CONST.PRIORITY_MO
4140 const { shouldUseNarrowLayout} = useResponsiveLayout ( ) ;
4241 const [ isLoadingReportData = true ] = useOnyx ( ONYXKEYS . IS_LOADING_REPORT_DATA ) ;
4342
44- useConfirmReadyToOpenApp ( ) ;
45-
4643 useEffect ( ( ) => {
4744 ReportActionContextMenu . hideContextMenu ( false ) ;
4845 // eslint-disable-next-line react-hooks/exhaustive-deps
@@ -100,7 +97,7 @@ function SidebarLinks({insets, optionListItems, priorityMode = CONST.PRIORITY_MO
10097 onFirstItemRendered = { setSidebarLoaded }
10198 />
10299 { isLoadingReportData && optionListItems ?. length === 0 && (
103- < View style = { [ StyleSheet . absoluteFillObject , styles . appBG , styles . mt3 ] } >
100+ < View style = { [ StyleSheet . absoluteFill , styles . appBG , styles . mt3 ] } >
104101 < OptionsListSkeletonView
105102 shouldAnimate
106103 reasonAttributes = { sidebarSkeletonReasonAttributes }
0 commit comments