From 8969344a4fceee7d3fe8247427eb34f94f327882 Mon Sep 17 00:00:00 2001 From: Jared Schoeny Date: Fri, 12 Jun 2026 23:58:20 -0600 Subject: [PATCH] Adjust subject of hack approval email --- src/app/hack/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/hack/actions.ts b/src/app/hack/actions.ts index 783b28c..e11f749 100644 --- a/src/app/hack/actions.ts +++ b/src/app/hack/actions.ts @@ -336,7 +336,7 @@ export async function approveHack(slug: string, verified?: boolean) { }); await sendTransactionalEmail({ to: creatorEmail, - subject: `Your hack "${hack.title}" has been approved`, + subject: `"${hack.title}" has been approved`, html, }); }