diff --git a/package.json b/package.json index fd8ec46..eb550f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lingdocs/pashto-inflector", - "version": "0.5.5", + "version": "0.5.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/add-pronouns.ts b/src/lib/add-pronouns.ts index 93555e3..96cd0f3 100644 --- a/src/lib/add-pronouns.ts +++ b/src/lib/add-pronouns.ts @@ -89,6 +89,7 @@ export default function addPronouns({ s, subject, object, info, displayForm, int const addRest = (s: string) => ( `${s}${noObject ? "" : ` ${engObj(object)}`}${englishConjugation.ep ? ` ${englishConjugation.ep}` : ""}` ); + console.log(englishConjugation); return englishBuilder(subject, englishConjugation.ec, negative) .map(addRest); }