This commit is contained in:
lingdocs 2022-06-13 22:27:14 -04:00
parent 9110f22ea8
commit cd323bd286
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@lingdocs/pashto-inflector",
"version": "2.9.5",
"version": "2.9.6",
"author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
"homepage": "https://verbs.lingdocs.com",

View File

@ -301,7 +301,7 @@ function combineIntoText(pieces: (T.Block | T.Kid)[], subjectPerson: T.Person, b
if (!rest.length) {
return firstPs;
}
return combineIntoText(rest, subjectPerson).flatMap(r => (
return combineIntoText(rest, subjectPerson, blankOut).flatMap(r => (
firstPs.map(fPs => concatPsString(fPs, " ", r))
)
);