-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lint): we should have a github workflow that tells you if you're …
…failing a lint check to prevent this from happening
- Loading branch information
Showing
2 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,7 +91,8 @@ export const buildEmailData = async (bundle, data) => { | |
case "submitter": | ||
returnObject["submitter"] = | ||
data.submitterEmail === "[email protected]" | ||
? '"George\'s Substitute" <[email protected]>' | ||
? // eslint-disable-next-line quotes | ||
'"George\'s Substitute" <[email protected]>' | ||
: `"${data.submitterName}" <${data.submitterEmail}>`; | ||
break; | ||
case "actionType": | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1052,7 +1052,7 @@ extension requests on Waivers only. Any other correspondence will be disregarde | |
<p>If you have questions, please contact | ||
<a href='mailto:[email protected]'>[email protected]</a> or your state lead.</p> | ||
<p>Thank you!</p>`, | ||
text: ``, | ||
text: "", | ||
}, | ||
{ | ||
name: "new-submission-1915c-cms", | ||
|
@@ -1085,7 +1085,7 @@ Summary: | |
<p>If the contents of this email seem suspicious, do not open them, and instead | ||
forward this email to <a href='mailto:[email protected]'>[email protected]</a>.</p> | ||
<p>Thank you!</p>`, | ||
text: ``, | ||
text: "", | ||
}, | ||
{ | ||
name: "withdraw-rai-1915c-cms", | ||
|
@@ -1108,7 +1108,7 @@ Summary: | |
<p>If the contents of this email seem suspicious, do not open them, and instead | ||
forward this email to <a href='mailto:[email protected]'>[email protected]</a>.</p> | ||
<p>Thank you!</p>`, | ||
text: ``, | ||
text: "", | ||
}, | ||
{ | ||
name: "temporary-extension-cms", | ||
|
@@ -1140,7 +1140,7 @@ Summary: | |
<p>If the contents of this email seem suspicious, do not open them, and instead | ||
forward this email to <a href='mailto:[email protected]'>[email protected]</a>.</p> | ||
<p>Thank you!</p>`, | ||
text: ``, | ||
text: "", | ||
}, | ||
{ | ||
name: "temporary-extension-state", | ||
|
@@ -1166,6 +1166,6 @@ and extension requests on Waivers only. Any other correspondence will be disrega | |
<p>If you have questions or did not expect this email, please contact | ||
<a href='mailto:[email protected]'>[email protected]</a> or your state lead.</p> | ||
<p>Thank you!</p>`, | ||
text: ``, | ||
text: "", | ||
}, | ||
]; |