@@ -8,7 +8,7 @@ import HeaderWithBackButton from '@components/HeaderWithBackButton';
88import { usePersonalDetails } from '@components/OnyxListItemProvider' ;
99import ScreenWrapper from '@components/ScreenWrapper' ;
1010import SelectionList from '@components/SelectionList' ;
11- import TableListItem from '@components/SelectionList/ListItem/TableListItem ' ;
11+ import UserListItem from '@components/SelectionList/ListItem/UserListItem ' ;
1212import type { ListItem } from '@components/SelectionList/types' ;
1313import Text from '@components/Text' ;
1414import useArchivedReportsIdSet from '@hooks/useArchivedReportsIdSet' ;
@@ -74,6 +74,7 @@ function WorkspaceRoomsPage({route}: WorkspaceRoomsPageProps) {
7474 keyForList : report . reportID ,
7575 text : roomName ,
7676 reportID : report . reportID ,
77+ shouldShowRightCaret : true ,
7778 rightElement : (
7879 < >
7980 < View style = { [ styles . flexRow , styles . alignItemsCenter , styles . gap2 , styles . flex2 ] } >
@@ -153,11 +154,10 @@ function WorkspaceRoomsPage({route}: WorkspaceRoomsPageProps) {
153154
154155 < SelectionList < RoomListItem >
155156 data = { data }
156- ListItem = { TableListItem }
157+ ListItem = { UserListItem }
157158 onSelectRow = { ( item ) => Navigation . navigate ( ROUTES . REPORT_WITH_ID . getRoute ( item . reportID ) ) }
158159 customListHeader = { customListHeader }
159160 shouldHeaderBeInsideList
160- shouldShowRightCaret
161161 />
162162 </ ScreenWrapper >
163163 </ AccessOrNotFoundWrapper >
0 commit comments