Skip to content

Commit

Permalink
fix: modification du message d'erreur
Browse files Browse the repository at this point in the history
  • Loading branch information
remy-auricoste committed Dec 13, 2023
1 parent 4f980e8 commit 7909405
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions ui/components/espace_pro/Authentification/CreationCompte.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,19 @@ const CreationCompteForm = ({ type, setQualiopi, setBandeau, origin }) => {
setBandeau({
type: "error",
header: "Pour des raisons techniques, les organismes de formation à distance ne sont pas acceptés actuellement.",
description: "Contactez-nous pour obtenir plus d'informations : ",
lien: `mailto:[email protected]?subject=${encodeURIComponent("Inscription d'un organisme de formation à distance")}`,
description: (
<>
<Link
aria-label="Contact de l'équipe La bonne alternance par email"
isExternal
textDecor="underline"
href={`mailto:[email protected]?subject=${encodeURIComponent("Inscription d'un organisme de formation à distance")}`}
>
Contactez-nous
</Link>{" "}
pour obtenir plus d'informations.
</>
),
})
}
}
Expand Down

0 comments on commit 7909405

Please sign in to comment.