From 75483b0d312ad0d427b93f0e9d3eb2010544535d Mon Sep 17 00:00:00 2001 From: Basti Ortiz <39114273+BastiDood@users.noreply.github.com> Date: Mon, 5 Aug 2024 13:12:38 +0800 Subject: [PATCH] chore: run formatter --- email/src/main.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/email/src/main.ts b/email/src/main.ts index 1a7c064..d121ab7 100644 --- a/email/src/main.ts +++ b/email/src/main.ts @@ -30,13 +30,13 @@ async function listenForDraftNotifications(emailer: Emailer, signal: AbortSignal const body = notif.round === null ? { - subject: `[DRAP] Lottery Round for Draft #${notif.draft_id} has begun!`, - message: `The lottery round for Draft #${notif.draft_id} has begun. For lab heads, kindly coordinate with the draft administrators for the next steps.`, - } + subject: `[DRAP] Lottery Round for Draft #${notif.draft_id} has begun!`, + message: `The lottery round for Draft #${notif.draft_id} has begun. For lab heads, kindly coordinate with the draft administrators for the next steps.`, + } : { - subject: `[DRAP] Round #${notif.round} for Draft #${notif.draft_id} has begun!`, - message: `Round #${notif.round} for Draft #${notif.draft_id} has begun. For lab heads, kindly check the students module to see the list of students who have chosen your lab.`, - }; + subject: `[DRAP] Round #${notif.round} for Draft #${notif.draft_id} has begun!`, + message: `Round #${notif.round} for Draft #${notif.draft_id} has begun. For lab heads, kindly check the students module to see the list of students who have chosen your lab.`, + }; return { emails: db.getValidFacultyAndStaffEmails(), ...body }; } case 'DraftRoundSubmitted':