Skip to content

Commit

Permalink
Dangerously set HTML (#1116)
Browse files Browse the repository at this point in the history
dangerously set HTML
  • Loading branch information
alex-solo authored Nov 19, 2024
1 parent 402b829 commit 87e21a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion components/Stepper/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ export function Stepper(props: StepperProps) {
)}
</div>
{props.activeStep === 1 && (
<p className="mt-[24px]">{tsln.stepper.navWarning}</p>
<p
dangerouslySetInnerHTML={{ __html: tsln.stepper.navWarning }}
className="mt-[24px]"
></p>
)}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion i18n/web/fr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ const fr: WebTranslations = {
nextStep: 'Suivant',
previousStep: 'Précédent',
getEstimate: 'Estimer mes prestations',
navWarning: `Note: Veuillez naviguer en utilisant les boutons «Précédent» et «Suivant». Il n’est pas recommandé d’utiliser les boutons de votre navigateur.`,
navWarning: `Note&nbsp;: Veuillez naviguer en utilisant les boutons «&nbsp;Précédent&nbsp;» et «&nbsp;Suivant&nbsp;». Il n’est pas recommandé d’utiliser les boutons de votre navigateur.`,
},
datePicker: {
month: 'Mois',
Expand Down

0 comments on commit 87e21a1

Please sign in to comment.