diff --git a/products/statement-generator/src/helpers/statementGenerators.ts b/products/statement-generator/src/helpers/statementGenerators.ts index 4b9c2a6b..1ff1411e 100644 --- a/products/statement-generator/src/helpers/statementGenerators.ts +++ b/products/statement-generator/src/helpers/statementGenerators.ts @@ -7,8 +7,8 @@ import { IStepState } from 'contexts/FormStateProps'; export function generateIntroduction(formState: IStepState): string { const { introduction } = formState; - const firstSentence = - 'Thank you so much for taking the time to read my letter.'; + const lastSentence = + 'Thank you for considering my case to expunge my criminal record.'; const nameSentence = introduction.fullName !== '' && introduction.age !== '' @@ -20,7 +20,7 @@ export function generateIntroduction(formState: IStepState): string { ? 'I am also a proud veteran of the United States Armed Forces.' : ''; - return `${firstSentence} ${nameSentence} ${veteranSentance}`; + return `${nameSentence} ${veteranSentance} ${lastSentence}`; } /**