@@ -17,7 +17,7 @@ import CONST from '@src/CONST';
1717import ONYXKEYS from '@src/ONYXKEYS' ;
1818import type { Report } from '@src/types/onyx' ;
1919import LHNTooltipContextProvider from './LHNTooltipContextProvider' ;
20- import OptionRowLHNData from './OptionRowLHNData ' ;
20+ import OptionRowLHNData from './OptionRowLHN ' ;
2121import OptionRowRendererComponent from './OptionRowRendererComponent' ;
2222import type { LHNOptionsListProps , RenderItemProps } from './types' ;
2323
@@ -34,7 +34,6 @@ function LHNOptionsList({style, contentContainerStyles, data, onSelectRow, optio
3434 const reportAttributes = useReportAttributes ( ) ;
3535 const [ policy ] = useOnyx ( ONYXKEYS . COLLECTION . POLICY ) ;
3636 const [ personalDetails ] = useOnyx ( ONYXKEYS . PERSONAL_DETAILS_LIST ) ;
37- const [ conciergeReportID ] = useOnyx ( ONYXKEYS . CONCIERGE_REPORT_ID ) ;
3837
3938 const styles = useThemeStyles ( ) ;
4039 const estimatedItemSize = optionMode === CONST . OPTION_MODE . COMPACT ? variables . optionRowHeightCompact : variables . optionRowHeight ;
@@ -84,7 +83,6 @@ function LHNOptionsList({style, contentContainerStyles, data, onSelectRow, optio
8483 policy = { itemPolicy }
8584 invoiceReceiverPolicy = { itemInvoiceReceiverPolicy }
8685 personalDetails = { personalDetails ?? { } }
87- conciergeReportID = { conciergeReportID }
8886 viewMode = { optionMode }
8987 isOptionFocused = { ! shouldDisableFocusOptions }
9088 onSelectRow = { onSelectRow }
@@ -93,12 +91,12 @@ function LHNOptionsList({style, contentContainerStyles, data, onSelectRow, optio
9391 />
9492 ) ;
9593 } ,
96- [ reportAttributes , reports , policy , personalDetails , conciergeReportID , optionMode , shouldDisableFocusOptions , onSelectRow , onLayoutItem ] ,
94+ [ reportAttributes , reports , policy , personalDetails , optionMode , shouldDisableFocusOptions , onSelectRow , onLayoutItem ] ,
9795 ) ;
9896
9997 const extraData = useMemo (
100- ( ) => [ reports , reportAttributes , policy , personalDetails , conciergeReportID , data . length , optionMode , isOffline ] ,
101- [ reports , reportAttributes , policy , personalDetails , conciergeReportID , data . length , optionMode , isOffline ] ,
98+ ( ) => [ reports , reportAttributes , policy , personalDetails , data . length , optionMode , isOffline ] ,
99+ [ reports , reportAttributes , policy , personalDetails , data . length , optionMode , isOffline ] ,
102100 ) ;
103101
104102 const previousOptionMode = usePrevious ( optionMode ) ;
0 commit comments