From aad21f4daa4370278ca0beaf79203986349a74ee Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Mon, 27 Apr 2026 10:20:28 +0900 Subject: [PATCH] =?UTF-8?q?fix(study):=20blockGesture=20TS=20=EC=96=B4?= =?UTF-8?q?=EB=85=B8=ED=85=8C=EC=9D=B4=EC=85=98=20=EC=A0=9C=EA=B1=B0=20(pl?= =?UTF-8?q?ain=20JS=20=ED=8E=98=EC=9D=B4=EC=A7=80)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/routes/study/write/[id]/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/study/write/[id]/+page.svelte b/frontend/src/routes/study/write/[id]/+page.svelte index 7adbb3b..184f4a2 100644 --- a/frontend/src/routes/study/write/[id]/+page.svelte +++ b/frontend/src/routes/study/write/[id]/+page.svelte @@ -38,7 +38,7 @@ // iOS Safari 핀치줌 차단 — 손가락 두 개로 캔버스 만질 때 페이지 zoom 발생 방지. // touch-action: none / manipulation 만으로 막히지 않는 gesture 이벤트 (비표준) 도 차단. - function blockGesture(e: Event) { e.preventDefault(); } + function blockGesture(e) { e.preventDefault(); } onMount(() => { load();