Remove one last debug log

This commit is contained in:
Matei Adriel 2023-10-29 06:59:57 +01:00
parent ac2715cd15
commit 9893d5c8a4
No known key found for this signature in database

View file

@ -20,7 +20,6 @@ b * (a - x0) = a - x1
x1 = a - b * (a - x0)
*/
export const handleScroll = (e: WheelEvent, camera: Camera) => {
console.log('got here')
const sign = -e.deltaY / Math.abs(e.deltaY)
const zoom = scrollStep ** sign