Remove console logs
This commit is contained in:
parent
2d6c2fe904
commit
b60eca9588
|
@ -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
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
const handleChange = e => {
|
||||
onChange(e.target.value)
|
||||
console.log(e.target.value)
|
||||
}
|
||||
|
||||
const onKeyDown = () => {
|
||||
|
|
Loading…
Reference in New Issue