Skip to content

Commit 00779ec

Browse files
committed
Fix day min value calculation
1 parent 892ab1f commit 00779ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export const getDayMin = (state: State): number => {
296296
return getDay(min, state.utc);
297297
}
298298

299-
return 0;
299+
return 1;
300300
};
301301

302302
export const getDayMax = (state: State): number => {

0 commit comments

Comments
 (0)