@@ -401,19 +401,6 @@ export const PreviewTab = (props: Props) => {
401
401
< div className = { classes . section } >
402
402
< p className = { cx ( fr . cx ( "fr-text--bold" ) , classes . item ) } >
403
403
{ t ( "previewTab.repoMetadata" ) }
404
- { repoMetadata ?. healthCheck ?. score && (
405
- < Chip
406
- label = {
407
- (
408
- Math . round (
409
- repoMetadata . healthCheck . score * 10000
410
- ) / 100
411
- ) . toFixed ( 2 ) + " %"
412
- }
413
- color = { scoreToLabel ( repoMetadata . healthCheck . score ) }
414
- style = { { marginLeft : "10px" } }
415
- />
416
- ) }
417
404
</ p >
418
405
{ repoMetadata ?. healthCheck ?. lastClosedIssue && (
419
406
< p className = { cx ( fr . cx ( "fr-text--regular" ) , classes . item ) } >
@@ -422,7 +409,8 @@ export const PreviewTab = (props: Props) => {
422
409
</ span >
423
410
< span >
424
411
{ useFormattedDate ( {
425
- time : repoMetadata . healthCheck . lastClosedIssue
412
+ time : repoMetadata . healthCheck . lastClosedIssue ,
413
+ showTime : false
426
414
} ) }
427
415
</ span >
428
416
</ p >
@@ -436,7 +424,8 @@ export const PreviewTab = (props: Props) => {
436
424
< span >
437
425
{ useFormattedDate ( {
438
426
time : repoMetadata . healthCheck
439
- . lastClosedIssuePullRequest
427
+ . lastClosedIssuePullRequest ,
428
+ showTime : false
440
429
} ) }
441
430
</ span >
442
431
</ p >
@@ -448,7 +437,8 @@ export const PreviewTab = (props: Props) => {
448
437
</ span >
449
438
< span >
450
439
{ useFormattedDate ( {
451
- time : repoMetadata . healthCheck . lastCommit
440
+ time : repoMetadata . healthCheck . lastCommit ,
441
+ showTime : false
452
442
} ) }
453
443
</ span >
454
444
</ p >
0 commit comments