diff --git a/src/components/organisms/ResumeBasicInput/BasicInfoForm.tsx b/src/components/organisms/ResumeBasicInput/BasicInfoForm.tsx index b728d1b3..34c8ee67 100644 --- a/src/components/organisms/ResumeBasicInput/BasicInfoForm.tsx +++ b/src/components/organisms/ResumeBasicInput/BasicInfoForm.tsx @@ -79,7 +79,9 @@ const BasicInfoForm = ({ spellCheck="false" defaultValue={position ?? null} onKeyDown={(event: React.KeyboardEvent) => { - event.preventDefault(); + if (event.key === 'Enter') { + event.preventDefault(); + } }} />