Skip to content

Commit

Permalink
mon should be default
Browse files Browse the repository at this point in the history
  • Loading branch information
kudrykv committed Aug 7, 2021
1 parent 780f48a commit 8052336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planner/common/blocks/envConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ export type {EnvConfig};
export const envConfig = {
vendor: VENDOR,
year: Number(PLANNER_YEAR),
weekStart: WEEK_START_DAY === 'Monday' ? 1 : 7,
weekStart: WEEK_START_DAY === 'Sunday' ? 7 : 1,
disableWeeks: DISABLE_WEEKS === 'true'
} as EnvConfig;

0 comments on commit 8052336

Please sign in to comment.