Skip to content

Commit

Permalink
Fix broken linter locally
Browse files Browse the repository at this point in the history
  • Loading branch information
charmcitygavin committed Jan 16, 2025
1 parent 1282a05 commit 15ebec4
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions react-app/src/features/faq/content/oneMACFAQContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,8 @@ export const oneMACFAQContent: FAQContent[] = [
rel="noopener noreferrer"
className="text-blue-600"
>
{pdf.title}{pdf.text && `: ${pdf.text}`}
{pdf.title}
{pdf.text && `: ${pdf.text}`}
</a>
</li>
))}
Expand Down Expand Up @@ -938,7 +939,8 @@ export const oneMACFAQContent: FAQContent[] = [
rel="noopener noreferrer"
className="text-blue-600"
>
{pdf.title}{pdf.text && `: ${pdf.text}`}
{pdf.title}
{pdf.text && `: ${pdf.text}`}
</a>
</li>
))}
Expand Down Expand Up @@ -1018,7 +1020,16 @@ export const oneMACFAQContent: FAQContent[] = [
answerJSX: (
<section className="space-y-2 ">
<p>CHIP eligibility SPA implementation guides can be downloaded at the links below.</p>
<p><a href="/chp/IG_ChipEligibilityIntroduction_Final_20241205.pdf" target="_blank" rel="noopener noreferrer" className="text-blue-600">CHIP Eligibility Introduction</a></p>
<p>
<a
href="/chp/IG_ChipEligibilityIntroduction_Final_20241205.pdf"
target="_blank"
rel="noopener noreferrer"
className="text-blue-600"
>
CHIP Eligibility Introduction
</a>
</p>
<ul className="list-disc pl-6 space-y-2">
{renderSection(
"MAGI Eligibility & Methods",
Expand Down

0 comments on commit 15ebec4

Please sign in to comment.