fix(emails): remove trailing period from document pending email subject (#3213)

This commit is contained in:
water
2026-08-24 17:05:43 +10:00
committed by GitHub
parent 7f11c163fe
commit 1de57a9e43
@@ -93,7 +93,7 @@ export const run = async ({ payload }: { payload: TSendDocumentPendingEmailJobDe
}, },
from: senderEmail, from: senderEmail,
replyTo: replyToEmail, replyTo: replyToEmail,
subject: i18n._(msg`Waiting for others to complete signing.`), subject: i18n._(msg`Waiting for others to complete signing`),
html, html,
text, text,
}); });