diff --git a/src/games/sub-cores/UnisexNounGame.tsx b/src/games/sub-cores/UnisexNounGame.tsx index 332e9e6..a7521de 100644 --- a/src/games/sub-cores/UnisexNounGame.tsx +++ b/src/games/sub-cores/UnisexNounGame.tsx @@ -48,9 +48,6 @@ export default function UnisexNounGame({ id, link, inChapter }: { inChapter: boo } function Display({ question, callback }: QuestionDisplayProps) { - function flipGender(g: T.Gender): T.Gender { - return g === "masc" ? "fem" : "masc"; - } const [answer, setAnswer] = useState(""); const infOut = inflectWord(question.entry); if (!infOut) return
WORD ERROR
; @@ -141,3 +138,7 @@ export default function UnisexNounGame({ id, link, inChapter }: { inChapter: boo Instructions={Instructions} /> }; + +function flipGender(g: T.Gender): T.Gender { + return g === "masc" ? "fem" : "masc"; +}