From e8b3397f8cc5fb19ebbd9ed1012f3c236d760b03 Mon Sep 17 00:00:00 2001 From: cromelex <96779452+cromelex@users.noreply.github.com> Date: Tue, 13 May 2025 16:55:29 +0100 Subject: [PATCH] feat:ReplyByEmail button fix defaults --- quartz/components/ReplyByEmail.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quartz/components/ReplyByEmail.tsx b/quartz/components/ReplyByEmail.tsx index 43a9807c6..91054faec 100644 --- a/quartz/components/ReplyByEmail.tsx +++ b/quartz/components/ReplyByEmail.tsx @@ -11,10 +11,10 @@ interface ReplyByEmailOptions { // Default options will be used if not provided in the layout file const defaultOptions: ReplyByEmailOptions = { - username: "ZW1haWw=", // "email" in base64 - domain: "ZXhhbXBsZS5jb20=", // "email.com" in base64 + username: "Y29udGFjdA==", // "contact" encoded in base64, as in contact@example.com + domain: "ZXhhbXBsZS5jb20=", // "example.com" encoded in base64, as in contact@example.com includeTitles: [], - excludeTitles: ["Home", "About me", "Contact me"], + excludeTitles: [], buttonLabel: "Reply by email" }