Skip to content

Commit

Permalink
fix: show check in instead of confirm for non-hackers
Browse files Browse the repository at this point in the history
  • Loading branch information
samderanova committed Jan 26, 2024
1 parent 95eb46d commit d707da1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ function ParticipantAction({
{confirmButton}
</ParticipantActionPopover>
);
} else if (participant.status === Status.signed) {
return confirmButton;
}
return confirmButton;
return checkinButton;
} else if (participant.status === Status.waitlisted) {
if (!isCheckin) {
return (
Expand Down

0 comments on commit d707da1

Please sign in to comment.