Skip to content

Commit

Permalink
Hotfix exceptSunday
Browse files Browse the repository at this point in the history
  • Loading branch information
jhj9109 committed Sep 28, 2023
1 parent 6993c8f commit 714e9e7
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 714e9e7

Please sign in to comment.