compact check for the desc removed

This commit is contained in:
kKaskak 2023-09-05 11:18:13 +03:00
parent 034faf9281
commit da24c36e3b
2 changed files with 2 additions and 1 deletions

1
.prettierignore Normal file
View file

@ -0,0 +1 @@
MetaPreview.js

View file

@ -158,7 +158,7 @@ const MetaPreview = ({ className, compact, name, logo, background, runtime, rele
null
}
{
!compact && typeof description === 'string' && description.length > 0 ?
typeof description === 'string' && description.length > 0 ?
<div className={styles['description-container']}>{description}</div>
:
null