Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/userTags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ export async function userHasTag(userId: string, tagName: string): Promise<boole
}

/**
* Check if a user is an island attendee (has the 'attendee' tag)
* Check if a user is an island attendee (has the 'attending' tag)
* @param userId - The user ID to check
* @returns Promise<boolean> - True if user is an attendee, false otherwise
*/
export async function isAttendee(userId: string): Promise<boolean> {
return userHasTag(userId, 'attendee');
return userHasTag(userId, 'attending');
}

/**
Expand Down
Loading