Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jgravois committed Jun 23, 2024
1 parent 185e860 commit 5db0306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/routes/reservation-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const TimeSlots = ({
className={cn("schedule_button", {
schedule_button___private: !!onHourPrivate,
schedule_button___open: !!onHourOpenPlay,
schedule_button___anon: !isLoggedIn || isPast,
schedule_button___anon: !isLoggedIn,
})}
onClick={handleOnHourClick}
>
Expand All @@ -134,7 +134,7 @@ const TimeSlots = ({
className={cn("schedule_button", {
schedule_button___private: !!halfHourPrivate,
schedule_button___open: !!halfHourOpenPlay,
schedule_button___anon: !isLoggedIn || isPast,
schedule_button___anon: !isLoggedIn,
})}
onClick={handleHalfHourClick}
>
Expand Down

0 comments on commit 5db0306

Please sign in to comment.