1
0
Fork 0
mirror of synced 2024-09-08 05:31:47 +12:00

Remove console logs

This commit is contained in:
Andrew Kingston 2023-03-14 10:19:37 +00:00
parent 2d6c2fe904
commit b60eca9588
2 changed files with 0 additions and 2 deletions

View file

@ -46,7 +46,6 @@
// Handles a wheel even and updates the scroll offsets
const handleWheel = e => {
console.log("wheel scrol!")
e.preventDefault()
const modifier = e.ctrlKey || e.metaKey
let x = modifier ? e.deltaY : e.deltaX

View file

@ -19,7 +19,6 @@
const handleChange = e => {
onChange(e.target.value)
console.log(e.target.value)
}
const onKeyDown = () => {