Skip to content

Commit

Permalink
Fix for checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
Aydan Pirani committed Sep 18, 2024
1 parent ee98ad5 commit 91c1be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/checkin/checkin-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async function assignPixelsToUser(userId: string, pixels: number) {
async function markUserAsCheckedIn(userId: string) {
await Database.ATTENDEE.findOneAndUpdate(
{ userId },
{ $set: { hasCheckedIn: true } }
{ hasCheckedIn: true }
);
}

Expand Down

0 comments on commit 91c1be4

Please sign in to comment.