Skip to content

Commit

Permalink
Remove unecessary parseInt
Browse files Browse the repository at this point in the history
  • Loading branch information
kdelemme committed Dec 2, 2024
1 parent 3eb4929 commit 27e00b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function AdvancedSettings() {
min={1}
max={359}
step={1}
onChange={(event) => onChange(parseInt(event.target.value, 10))}
onChange={(event) => onChange(event.target.value)}
/>
)}
/>
Expand Down Expand Up @@ -130,7 +130,7 @@ export function AdvancedSettings() {
min={1}
max={59}
step={1}
onChange={(event) => onChange(parseInt(event.target.value, 10))}
onChange={(event) => onChange(event.target.value)}
/>
)}
/>
Expand Down

0 comments on commit 27e00b0

Please sign in to comment.