Skip to content

Commit d5e1092

Browse files
committed
Backend: processScheduledEmails cleanup
1 parent 6ae5302 commit d5e1092

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/backend/routes/internal/processScheduledAuditEmails.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const processScheduledAuditEmails = async () => {
6767
// Ignore stale lastSent dates from before emails were enabled in prod
6868
const emailEnabledDate = DateTime.fromISO("2026-02-19T00:00:00.000Z");
6969
const rawLastSent = email.lastSent ? DateTime.fromISO(email.lastSent) : emailEnabledDate;
70-
console.log(rawLastSent);
70+
//console.log(rawLastSent);
7171
const lastSent = (rawLastSent < emailEnabledDate) ? emailEnabledDate : rawLastSent;
7272
let intervalDays = null;
7373
switch (email.frequency.toLowerCase()) {

0 commit comments

Comments
 (0)