Skip to content

Commit eca3309

Browse files
Merge pull request #1753 from hackforla/1693-remove-sent
remove transitional sentences
2 parents 3bd2588 + 0767267 commit eca3309

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

products/statement-generator/src/helpers/statementGenerators.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export function generateInvolvementJob(formState: IStepState): string {
4343
// Determine the correct article "a" or "an" based on the first letter of the jobTitle
4444
const article = generateArticle(jobTitle);
4545

46-
return `I have been working at ${companyName} as ${article} ${jobTitle}. At ${companyName}, ${jobDescription} Having my record cleared would help me continue to advance in my career.`;
46+
return `I have been working at ${companyName} as ${article} ${jobTitle}. At ${companyName}, ${jobDescription}`;
4747
}
4848

4949
/**
@@ -63,7 +63,7 @@ export function generateInvolvementUnemployment(formState: IStepState): string {
6363
return '';
6464
}
6565

66-
return `Finding employment hasn’t been easy with a conviction on my record. ${unemploymentDescription} Having my record cleared would help me find a job and be more self-sufficient.`;
66+
return unemploymentDescription;
6767
}
6868

6969
/**
@@ -83,7 +83,7 @@ export function generateInvolvementCommunity(formState: IStepState): string {
8383
return '';
8484
}
8585

86-
return `I have been volunteering with ${organizationName}. At ${organizationName}, ${serviceDescription} Serving others has been fulfilling for me. `;
86+
return `I have been volunteering with ${organizationName}. At ${organizationName}, ${serviceDescription} `;
8787
}
8888

8989
/**
@@ -103,7 +103,7 @@ export function generateInvolvementRecovery(formState: IStepState): string {
103103
return '';
104104
}
105105

106-
return `${recoveryName} has been part of my self-improvement process. ${recoveryDescription} I believe my involvement in this shows that I am committed to improving my life.`;
106+
return `${recoveryName} has been part of my self-improvement process. ${recoveryDescription}`;
107107
}
108108

109109
/**
@@ -123,7 +123,7 @@ export function generateInvolvementSchool(formState: IStepState): string {
123123
return '';
124124
}
125125

126-
return `Education is important to me. I have been attending ${schoolName}, where I have been studying ${studyName}. ${passionDescription} Furthering my education has been significant in my life.`;
126+
return `I have been attending ${schoolName}, where I have been studying ${studyName}. ${passionDescription}`;
127127
}
128128

129129
/**
@@ -148,7 +148,7 @@ export function generateInvolvementParenting(formState: IStepState): string {
148148
? `I have ${numberChildren} children.`
149149
: `I have 1 child.`;
150150

151-
return `I have been prioritizing my parenting. ${numberChildrenDescription} ${parentDescription} Focusing on parenting has changed my life for the better.`;
151+
return `${numberChildrenDescription} ${parentDescription}`;
152152
}
153153

154154
/**
@@ -166,7 +166,7 @@ export function generateInvolvementSomethingElse(
166166
return '';
167167
}
168168

169-
return `I have benefited from ${activityName}. ${activityDescription} This has been important to me personally as I work towards my goals. `;
169+
return `I have benefited from ${activityName}. ${activityDescription}`;
170170
}
171171

172172
/**
@@ -182,7 +182,7 @@ export function generateFutureGoals(formState: IStepState): string {
182182
return '';
183183
}
184184

185-
return `I believe my activities support my case for expungement by showing that I am committed to being a productive citizen. I have also set important goals for myself. ${goals} To work towards my goals, ${goalsHow} This is important to me and the future I want for myself.`;
185+
return `${goals} To work towards my goals, ${goalsHow}`;
186186
}
187187

188188
/**
@@ -198,7 +198,7 @@ export function generateWhy(formState: IStepState): string {
198198
return '';
199199
}
200200

201-
return `Getting my record cleared would have a major impact on my life. ${clearRecordWhy} ${clearRecordHow}`;
201+
return `${clearRecordWhy} ${clearRecordHow}`;
202202
}
203203

204204
/**

0 commit comments

Comments
 (0)