Clean up debug logging

This commit is contained in:
Marshall Polaris 2022-08-11 12:54:57 -07:00
parent 7bd9ad942e
commit ee8abccb8a

View File

@ -3,6 +3,5 @@ import { useWindowSize } from 'web/hooks/use-window-size'
export function FullscreenConfetti(props: ConfettiProps) {
const { width, height } = useWindowSize()
console.log('Width: ', width, 'Height: ', height)
return <Confetti {...props} width={width} height={height} />
}