Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DovMa committed Jan 23, 2024
1 parent 3287791 commit 17b6a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/fields/TimePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const TimePicker = ({
const getTimeInterval = (time?: Date) => {
if (time) {
const minutes = time.getMinutes();
if (minutes === 30 || minutes == 0) {
if (minutes === 30 || minutes === 0) {
return time;
}
if (minutes < 30) {
Expand Down

0 comments on commit 17b6a57

Please sign in to comment.