Skip to content

Commit 8219c15

Browse files
Update result text for exemption checklist
Signed-off-by: Natalia Luzuriaga <natalia.luzuriaga@cms.hhs.gov>
1 parent 5f67be2 commit 8219c15

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

js/exemptionQuizHandler.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,13 @@ function determineResults(checkedValues) {
2424
// Project qualifies for the SHARE IT Act
2525
if (checkedValues.includes("none")) {
2626
text = `<h4>Your project is: <strong>NOT EXEMPTED</strong></h4>
27-
<p>Based on your selections, your project qualifies for the SHARE IT Act ✅</p>
2827
<p>If your repository is public, mark <code>usageType</code> as <strong>openSource</strong>.</p>
29-
<p>If your repository is private/internal, mark <code>usageType</code> as <strong>governmentWideReuse</strong>.</p>`;
28+
<p>If your repository is private, mark <code>usageType</code> as <strong>governmentWideReuse</strong>.</p>`;
3029
}
3130
// Project is exempted
3231
else {
3332
const selections = checkedValues.join(", ");
3433
text = `<h4>Your project is: <strong>EXEMPTED</strong></h4>
35-
<p>Based on your selections, your project is exempted from the SHARE IT Act ❌</p>
3634
<p>We've marked this in the form below for you as: <strong>${selections}</strong></p>
3735
<p>Be sure to include a 1–2 sentence justification in the <code>exemptionText</code> field to support the exemption determination.</p>`;
3836

0 commit comments

Comments
 (0)