Skip to content

Commit

Permalink
remove todo
Browse files Browse the repository at this point in the history
  • Loading branch information
IldarKamalov committed Aug 28, 2023
1 parent 23724ec commit 13ec6a8
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -21,8 +21,6 @@ export const TimeSelect = ({
const hourOptions = Array.from({ length: 24 }, (_, i) => i.toString().padStart(2, '0'));
const minuteOptions = Array.from({ length: 60 }, (_, i) => i.toString().padStart(2, '0'));

// TODO probably the wrong way trying to do it in milliseconds,
// maybe we should use strings like '00' and convert it to milliseconds later
const onHourChange = (event) => {
setHours(event.target.value);
const newHour = parseInt(event.target.value, 10);
Expand Down

0 comments on commit 13ec6a8

Please sign in to comment.