Skip to content

Commit

Permalink
fix: freshy night confirm event typo
Browse files Browse the repository at this point in the history
  • Loading branch information
TeeGoood committed Jul 31, 2024
1 parent 4753aa9 commit ea7f64f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/rpkm/Sidebar/FreshyNightLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const FreshyNightLink = ({ children }: FreshyNightLinkProps) => {
const isRegistered = useMemo<boolean>(() => {
return (
!!checkins &&
!!checkins.find((checkin) => checkin.event === 'confirm-freshy-night')
!!checkins.find((checkin) => checkin.event === 'freshy-night-confirm')
);
}, [checkins]);

Expand Down

0 comments on commit ea7f64f

Please sign in to comment.