Skip to content

Commit

Permalink
Merge pull request #117 from Together42/develop
Browse files Browse the repository at this point in the history
Hotfix exceptSunday
  • Loading branch information
jhj9109 authored Sep 28, 2023
2 parents 3bcf7f7 + 714e9e7 commit 5d31739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Rotation/Rotation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const setTileDisabled =

const rules = {
weekdayOnly: ({ date, view: _view }) => isWeekend(date),
exceptSunday: ({ date, view: _view }) => !isSunday(date),
exceptSunday: ({ date, view: _view }) => isSunday(date),
} as const satisfies Record<string, TileRule>;

/**
Expand Down

0 comments on commit 5d31739

Please sign in to comment.