@@ -7,7 +7,6 @@ import AvatarWithImagePicker from '@components/AvatarWithImagePicker';
77import FullPageNotFoundView from '@components/BlockingViews/FullPageNotFoundView' ;
88import ConfirmModal from '@components/ConfirmModal' ;
99import DisplayNames from '@components/DisplayNames' ;
10- import FixedFooter from '@components/FixedFooter' ;
1110import HeaderWithBackButton from '@components/HeaderWithBackButton' ;
1211import MentionReportContext from '@components/HTMLEngineProvider/HTMLRenderers/MentionReportRenderer/MentionReportContext' ;
1312import * as Expensicons from '@components/Icon/Expensicons' ;
@@ -22,7 +21,6 @@ import ReportActionAvatars from '@components/ReportActionAvatars';
2221import ScreenWrapper from '@components/ScreenWrapper' ;
2322import ScrollView from '@components/ScrollView' ;
2423import { useSearchContext } from '@components/Search/SearchContext' ;
25- import TextWithCopy from '@components/TextWithCopy' ;
2624import useDuplicateTransactionsAndViolations from '@hooks/useDuplicateTransactionsAndViolations' ;
2725import useLocalize from '@hooks/useLocalize' ;
2826import useNetwork from '@hooks/useNetwork' ;
@@ -875,6 +873,25 @@ function ReportDetailsPage({policy, report, route, reportMetadata}: ReportDetail
875873 </ OfflineWithFeedback >
876874 ) }
877875
876+ { isFinancialReportsForBusinesses && (
877+ < >
878+ < MenuItemWithTopDescription
879+ title = { base62ReportID }
880+ description = { translate ( 'common.reportID' ) }
881+ copyValue = { base62ReportID }
882+ interactive = { false }
883+ shouldBlockSelection
884+ />
885+ < MenuItemWithTopDescription
886+ title = { report . reportID }
887+ description = { translate ( 'common.longID' ) }
888+ copyValue = { report . reportID }
889+ interactive = { false }
890+ shouldBlockSelection
891+ />
892+ </ >
893+ ) }
894+
878895 < PromotedActionsBar
879896 containerStyle = { styles . mt5 }
880897 promotedActions = { promotedActions }
@@ -901,25 +918,6 @@ function ReportDetailsPage({policy, report, route, reportMetadata}: ReportDetail
901918 onPress = { ( ) => setIsDeleteModalVisible ( true ) }
902919 />
903920 ) }
904-
905- { isFinancialReportsForBusinesses && (
906- < FixedFooter style = { [ styles . alignItemsCenter , styles . flex1 , styles . justifyContentEnd , styles . pt5 ] } >
907- < View style = { [ styles . flexRow , styles . alignItemsCenter , styles . gap3 ] } >
908- < TextWithCopy
909- copyValue = { base62ReportID }
910- style = { styles . textMicroSupporting }
911- >
912- { `${ translate ( 'common.reportID' ) } : ${ base62ReportID } ` }
913- </ TextWithCopy >
914- < TextWithCopy
915- copyValue = { report . reportID }
916- style = { styles . textMicroSupporting }
917- >
918- { `${ translate ( 'common.longID' ) } : ${ report . reportID } ` }
919- </ TextWithCopy >
920- </ View >
921- </ FixedFooter >
922- ) }
923921 </ ScrollView >
924922 < ConfirmModal
925923 danger
0 commit comments