fix(client): conditionally render tag wrapper (#55368)

This commit is contained in:
Lasse Jørgensen
2024-06-30 09:33:35 +02:00
committed by GitHub
parent 5cc10ef7b7
commit ea6f600fa3

View File

@@ -271,16 +271,16 @@ class Block extends Component<BlockProps> {
progressBarRender}
</button>
</h3>
<div className='tags-wrapper'>
{!isAudited && (
{!isAudited && (
<div className='tags-wrapper'>
<Link
className='cert-tag'
to={t('links:help-translate-link-url')}
>
{t('misc.translation-pending')}
</Link>
)}
</div>
</div>
)}
{isExpanded && <BlockIntros intros={blockIntroArr} />}
{isExpanded && (
<Challenges