Cherry-pick the good stuff from input-per-letter

This commit is contained in:
Lynn
2022-01-14 17:19:42 +01:00
parent 687f2acc22
commit a688c30427
4 changed files with 8 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ export function clueWord(clue: Clue): string {
if (clue === Clue.Absent) {
return "no";
} else if (clue === Clue.Elsewhere) {
return "yellow";
return "elsewhere";
} else {
return "correct";
}