Skip to content

Commit

Permalink
Use semicolon in mailto link
Browse files Browse the repository at this point in the history
Replace comma which is the proposed standard for mailto links according to RFC with semicolon which is the default for Outlook. Our userbase uses preferably Outlook which is why we decided to differ from the standard.
  • Loading branch information
mpanne committed Jan 21, 2025
1 parent 480703a commit 57afaed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dito/app/routes/vorpruefung.ergebnis/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ function buildEmailBody(
function resolveRecipients(result: PreCheckResult) {
const additionalRecipient =
result.interoperability !== ResultType.NEGATIVE
? `,${emailTemplate.toDC}`
? `; ${emailTemplate.toDC}`
: "";
return `${emailTemplate.toNkr}${additionalRecipient}`;
}
Expand Down

0 comments on commit 57afaed

Please sign in to comment.