Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
jongrim committed Dec 9, 2023
1 parent a5d9b75 commit 0e71fc2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions netlify/functions/notifyPreSeat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0e71fc2

Please sign in to comment.