You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: products/statement-generator/src/helpers/statementGenerators.ts
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ export function generateInvolvementJob(formState: IStepState): string {
43
43
// Determine the correct article "a" or "an" based on the first letter of the jobTitle
44
44
constarticle=generateArticle(jobTitle);
45
45
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}`;
47
47
}
48
48
49
49
/**
@@ -63,7 +63,7 @@ export function generateInvolvementUnemployment(formState: IStepState): string {
63
63
return'';
64
64
}
65
65
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
+
returnunemploymentDescription;
67
67
}
68
68
69
69
/**
@@ -83,7 +83,7 @@ export function generateInvolvementCommunity(formState: IStepState): string {
83
83
return'';
84
84
}
85
85
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} `;
87
87
}
88
88
89
89
/**
@@ -103,7 +103,7 @@ export function generateInvolvementRecovery(formState: IStepState): string {
103
103
return'';
104
104
}
105
105
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}`;
107
107
}
108
108
109
109
/**
@@ -123,7 +123,7 @@ export function generateInvolvementSchool(formState: IStepState): string {
123
123
return'';
124
124
}
125
125
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}`;
127
127
}
128
128
129
129
/**
@@ -148,7 +148,7 @@ export function generateInvolvementParenting(formState: IStepState): string {
148
148
? `I have ${numberChildren} children.`
149
149
: `I have 1 child.`;
150
150
151
-
return`I have been prioritizing my parenting. ${numberChildrenDescription}${parentDescription} Focusing on parenting has changed my life for the better.`;
@@ -166,7 +166,7 @@ export function generateInvolvementSomethingElse(
166
166
return'';
167
167
}
168
168
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}`;
170
170
}
171
171
172
172
/**
@@ -182,7 +182,7 @@ export function generateFutureGoals(formState: IStepState): string {
182
182
return'';
183
183
}
184
184
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}`;
186
186
}
187
187
188
188
/**
@@ -198,7 +198,7 @@ export function generateWhy(formState: IStepState): string {
198
198
return'';
199
199
}
200
200
201
-
return`Getting my record cleared would have a major impact on my life. ${clearRecordWhy}${clearRecordHow}`;
0 commit comments