캔버스 이벤트 오류 수정

[작업내용] : 캔버스 화면에서 이벤트 발생 후 캔버스 없는 페이지로 이동시 발생하는 오류 수정
This commit is contained in:
yjnoh 2025-06-05 10:49:44 +09:00
parent 0923383a42
commit 8d3305cd04

View File

@ -401,7 +401,7 @@ export function useEvent() {
const removeMouseEvent = (type) => {
mouseEventListeners.current = mouseEventListeners.current.filter((event) => {
if (event.eventType === type) {
canvas.off(type, event.handler)
canvas?.off(type, event.handler)
return false
}
return true