Skip to content

Commit 79800a1

Browse files
committed
text changes
1 parent 884217b commit 79800a1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

client/src/constants.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const WorkflowStatus = {
2424
};
2525

2626
export const TemplateType = {
27-
I9: { name: 'MyMaestro: I-9', type: '1-9 document' },
27+
I9: { name: 'MyMaestro: I-9', type: 'I-9 document' },
2828
OFFER: { name: 'MyMaestro: Offer Letter', type: 'Offer letter' },
2929
NDA: { name: 'MyMaestro: NDA', type: 'NDA document' },
3030
};
@@ -33,7 +33,7 @@ export const WorkflowOptions = [
3333
{
3434
value: `Create ${TemplateType.I9.type}`,
3535
type: TemplateType.I9.type,
36-
message: "You've successfully created a 1-9 workflow",
36+
message: "You've successfully created an I-9 workflow",
3737
},
3838
{
3939
value: `Create ${TemplateType.OFFER.type}`,

server/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const BACKEND_ROUTE = {
44
};
55

66
const TEMPLATE_TYPE = {
7-
I9: '1-9 document',
7+
I9: 'I-9 document',
88
OFFER: 'Offer letter',
99
NDA: 'NDA document',
1010
};

0 commit comments

Comments
 (0)