Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
acouch committed May 15, 2024
1 parent 9d95d14 commit e4a8006
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/content/ProcessInvolved.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const ProcessInvolved = () => {
{chunks}
</a>
),
strong: (chunks) => (<strong> {chunks} </strong>),
strong: (chunks) => <strong> {chunks} </strong>,
});
const para2 = t.rich("involved.paragraph_2", {
github: (chunks) => (
Expand All @@ -38,7 +38,7 @@ const ProcessInvolved = () => {
{chunks}
</a>
),
strong: (chunks) => (<strong> {chunks} </strong>)
strong: (chunks) => <strong> {chunks} </strong>,
});
return (
<ContentLayout data-testid="process-involved-content" bottomBorder="none">
Expand Down

0 comments on commit e4a8006

Please sign in to comment.