diff --git a/package.json b/package.json index 3b06e7b..716fc8d 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/lib/phrase-building/compile.ts b/src/lib/phrase-building/compile.ts index c7ed1a0..18a6330 100644 --- a/src/lib/phrase-building/compile.ts +++ b/src/lib/phrase-building/compile.ts @@ -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)) ) );