From 5c5f4d9ad79eb4d127814bf9c1ed5a61917d2f77 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 04:58:32 +0000 Subject: [PATCH 1/2] Create draft PR for #413 From e8a933b156ea0129886b308bab04294573a0306b Mon Sep 17 00:00:00 2001 From: Jeongwoo Park <121204715+lurgi@users.noreply.github.com> Date: Tue, 13 Aug 2024 14:01:48 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=ED=95=9C=EA=B8=80=20=EC=9E=85?= =?UTF-8?q?=EB=A0=A5=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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) {