oops back to transitive as default from grammTrans option

This commit is contained in:
lingdocs 2022-03-28 22:27:29 +05:00
parent 3019d1cd39
commit c3c1e7cdd5
2 changed files with 3 additions and 1 deletions

View File

@ -150,7 +150,7 @@ function makeVerbSelection(verb: VerbEntry, oldVerbSelection?: VerbSelection): V
return oldVerbSelection.object;
}
const transitivity: T.Transitivity = "grammaticallyTransitive" in info
? "grammatically transitive"
? "transitive"
: info.transitivity;
const object = (transitivity === "grammatically transitive")
? T.Person.ThirdPlurMale

View File

@ -13,6 +13,8 @@ const kingEmoji = "👑";
const servantEmoji = "🙇‍♂️";
const verbs = verbsRaw;
// TODO: Ability to choose stative/dynamic compounds when both work
// TODO: error handling on error with rendering etc
export function PhraseBuilder() {
const [subject, setSubject] = useState<NPSelection | undefined>(undefined);