Skip to content

Commit

Permalink
fix(suite): fix condition for experimental urls
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroslavProchazka authored and komret committed Aug 7, 2024
1 parent 1e28c5d commit f8c7860
Showing 1 changed file with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,12 @@ const FeatureLine = ({ feature, features }: FeatureLineProps) => {

return (
<FeatureLineWrapper>
{url && (
<TextColumn
title={titleId ? <Translation id={titleId} /> : feature}
description={descId && <Translation id={descId} />}
buttonLink={url}
buttonTitle={<Translation id="TR_LEARN_MORE" />}
/>
)}
<TextColumn
title={titleId ? <Translation id={titleId} /> : feature}
description={descId && <Translation id={descId} />}
buttonLink={url}
buttonTitle={<Translation id="TR_LEARN_MORE" />}
/>
<ActionColumn>
<Checkbox isChecked={checked} onClick={onChangeFeature} />
</ActionColumn>
Expand Down

0 comments on commit f8c7860

Please sign in to comment.