We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13995fa commit ca06186Copy full SHA for ca06186
src/components/_common/alternativeAudience/AlternativeAudience.tsx
@@ -83,7 +83,10 @@ export const AlternativeAudience = () => {
83
return (
84
<div className={style.alternativeAudience}>
85
<BodyLong size="small" className={style.text}>
86
- {getRelatedString('relatedAudience').replace('{name}', productName)}{' '}
+ {getRelatedString('relatedAudience').replace(
87
+ '{name}',
88
+ productName === 'nav' ? productName.toUpperCase() : productName
89
+ )}{' '}
90
{audienceLinks.map((link, index) => (
91
<Fragment key={index}>
92
<LenkeInline href={link.url} analyticsComponent="alternativ-målgruppe">
0 commit comments