Skip to content

Commit

Permalink
whoops i missed the first question
Browse files Browse the repository at this point in the history
  • Loading branch information
sydneywalcoff committed Jan 23, 2023
1 parent 98da4e3 commit 70b10dd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 !== ''
Expand All @@ -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}`;
}

/**
Expand Down

0 comments on commit 70b10dd

Please sign in to comment.