From 15b3f2ae49364fdc8497f880f63125a3f53a8061 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 15:51:31 +0900 Subject: [PATCH] =?UTF-8?q?fix-fe:=20=EA=B3=B5=EA=B3=A0=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95=20(#414)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jeongwoo Park <121204715+lurgi@users.noreply.github.com> --- frontend/src/components/recruitment/CheckBoxField/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/recruitment/CheckBoxField/index.tsx b/frontend/src/components/recruitment/CheckBoxField/index.tsx index 173a3274e..05609c805 100644 --- a/frontend/src/components/recruitment/CheckBoxField/index.tsx +++ b/frontend/src/components/recruitment/CheckBoxField/index.tsx @@ -48,6 +48,8 @@ export default function CheckBoxField({ choices, setChoices }: Props) { }, [choices.length]); const handleKeyDown = (e: React.KeyboardEvent, index: number) => { + if (e.nativeEvent.isComposing) return; + if ((e.key === 'Tab' || e.key === 'Enter') && !e.shiftKey) { e.preventDefault(); if (index === choices.length - 1) {