diff --git a/app/components/SubmitFormComponents/TextInputBoxAI.tsx b/app/components/SubmitFormComponents/TextInputBoxAI.tsx index 6a645ac2..23ef176a 100644 --- a/app/components/SubmitFormComponents/TextInputBoxAI.tsx +++ b/app/components/SubmitFormComponents/TextInputBoxAI.tsx @@ -68,7 +68,7 @@ export default function TextInputBoxAI({ }; const handleSuggestions = (e: KeyboardEvent) => { - if (e.key === "Tab") { + if (e.key === "Shift") { e.preventDefault(); commitSuggestions(); } @@ -115,9 +115,9 @@ export default function TextInputBoxAI({ /> {suggestions && ( <> -
[補完候補]: {suggestions}
-- Tabキーまたはボタンを押して補完できます。 +
[補完候補]: {suggestions}
++ Shiftキーまたはボタンを押して補完できます。