We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c79ebf6 commit f6f85ccCopy full SHA for f6f85cc
src/Time/TimeInputs.tsx
@@ -118,8 +118,8 @@ function TimeInputs({
118
onSubmitEditing={onSubmitEndInput}
119
onChanged={(newMinutesFromInput) => {
120
let newMinutes = newMinutesFromInput
121
- if (newMinutesFromInput > 60) {
122
- newMinutes = 60
+ if (newMinutesFromInput > 59) {
+ newMinutes = 59
123
}
124
onChange({
125
hours,
0 commit comments