diff --git a/netlify/functions/notifyPreSeat.ts b/netlify/functions/notifyPreSeat.ts index c90ca1d..0579531 100644 --- a/netlify/functions/notifyPreSeat.ts +++ b/netlify/functions/notifyPreSeat.ts @@ -34,14 +34,11 @@ export const handler: Handler = async (event) => { }, []), ); - console.log(toNotify); const { data: profiles } = await supabase .from("profiles") .select("*") .in("id", [...toNotify]); - console.log(profiles); - for (const user of profiles) { await addNotificationRecord({ user_id: user.id,