From 717cdba4087b240e9853433ba0c6f03ea4a52556 Mon Sep 17 00:00:00 2001 From: Julien Genestoux Date: Thu, 16 May 2024 11:34:50 -0400 Subject: [PATCH] fix(locksmith): fixing email sending on new events --- locksmith/src/operations/eventOperations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locksmith/src/operations/eventOperations.ts b/locksmith/src/operations/eventOperations.ts index 84d6ac3a456..97ffe3d6167 100644 --- a/locksmith/src/operations/eventOperations.ts +++ b/locksmith/src/operations/eventOperations.ts @@ -224,5 +224,5 @@ export const saveEvent = async ( await savedEvent.save() } - return [savedEvent, !!parsed.data.slug] + return [savedEvent, !parsed.data.slug] }