File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed
frontend/src/pages/Reports Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import {
1919import { useState , useEffect } from 'react' ;
2020import { useParams } from 'react-router-dom' ;
2121import { useTranslation } from 'react-i18next' ;
22- import { format } from 'date-fns' ;
2322import { bookmark , bookmarkOutline } from 'ionicons/icons' ;
2423import { MedicalReport } from 'common/models/medicalReport' ;
2524import { useQuery , useMutation , useQueryClient } from '@tanstack/react-query' ;
@@ -237,22 +236,6 @@ const ReportDetailPage: React.FC = () => {
237236 </ IonCardContent >
238237 </ IonCard >
239238
240- < div className = "ion-padding" >
241- < IonText color = "medium" className = "report-metadata" >
242- { t ( 'detail.reportDate' ) } : { report . date ? format ( new Date ( report . date ) , 'MM/dd/yyyy' ) : 'N/A' }
243- </ IonText >
244- { report . doctor && (
245- < IonText color = "medium" className = "report-metadata" >
246- < div > { t ( 'detail.doctor' ) } : { report . doctor } </ div >
247- </ IonText >
248- ) }
249- { report . facility && (
250- < IonText color = "medium" className = "report-metadata" >
251- < div > { t ( 'detail.facility' ) } : { report . facility } </ div >
252- </ IonText >
253- ) }
254- </ div >
255-
256239 < IonToast
257240 isOpen = { showBookmarkToast }
258241 onDidDismiss = { ( ) => setShowBookmarkToast ( false ) }
You can’t perform that action at this time.
0 commit comments