Skip to content

Commit

Permalink
fix(template): delete useless words
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihoub2 committed Nov 4, 2024
1 parent 0c15c99 commit 8e73e75
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion client/src/components/mail-form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ function EmailForm({

if (value === "api") {
setUserResponse(`Bonjour,
Nous nous réjouissons que les données de scanR suscitent l'intérêt de l'ISC dont nous suivons les travaux.
L'accès aux API scanR est possible avec le compte [Identifiant] et le mot de passe [Mot de passe].
Les API sont documentées ici https://scanr.enseignementsup-recherche.gouv.fr/docs/overview.
N'hésitez pas à nous solliciter pour des compléments d'informations.
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/last-mails-sent/components/item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const LastMailsSentItem: React.FC<LastMailsSentProps> = ({ data }) => {
Envoyé le {formattedDate} à {formattedTime}
</i>
</Text>
<Text>{email.userResponse}</Text>
<Text>{email.userResponse.replaceAll("<br/>", " ")}</Text>
</div>
</Col>
);
Expand Down

0 comments on commit 8e73e75

Please sign in to comment.