캔버스 이벤트 오류 수정
[작업내용] : 캔버스 화면에서 이벤트 발생 후 캔버스 없는 페이지로 이동시 발생하는 오류 수정
This commit is contained in:
parent
0923383a42
commit
8d3305cd04
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user