smoll fixes

This commit is contained in:
2025-03-05 12:52:09 +01:00
parent 3ac3a44ddc
commit 0ea354b13c
3 changed files with 5 additions and 5 deletions

View File

@ -26,11 +26,11 @@ async function listmonk(data: listmonkData): Promise<string> {
try {
const response = await fetch(`${listmonkUrl}subscribers`, options);
if (!response.ok) {
return "Error. Please try again";
return "An error occurred or this email is already subscribed.";
}
return "Thanks for signing up! Please check your email for a confirmation.";
} catch (error) {
return "Error. Please contact us.";
return "An error occurred while trying to sign up. Please try again.";
}
}