diff --git a/src/frontend/src/components/ProjectSubmissions/ProjectInfo.tsx b/src/frontend/src/components/ProjectSubmissions/ProjectInfo.tsx index 57d08592ad..504b017efd 100644 --- a/src/frontend/src/components/ProjectSubmissions/ProjectInfo.tsx +++ b/src/frontend/src/components/ProjectSubmissions/ProjectInfo.tsx @@ -55,7 +55,13 @@ const ProjectInfo = () => { {projectDashboardLoading ? ( ) : ( - {projectDashboardDetail?.created} + + {projectDashboardDetail?.created + ? `${projectDashboardDetail?.created?.split('T')[0]} ${projectDashboardDetail?.created + ?.split('T')[1] + ?.split('.')[0]}` + : '-'} + )}