diff --git a/frontend/src/pages/content/ProcessInvolved.tsx b/frontend/src/pages/content/ProcessInvolved.tsx
index 36717c8883..c3eaea5465 100644
--- a/frontend/src/pages/content/ProcessInvolved.tsx
+++ b/frontend/src/pages/content/ProcessInvolved.tsx
@@ -15,6 +15,7 @@ const ProcessInvolved = () => {
{chunks}
),
+ strong: (chunks) => ( {chunks} ),
});
const para2 = t.rich("involved.paragraph_2", {
github: (chunks) => (
@@ -37,6 +38,7 @@ const ProcessInvolved = () => {
{chunks}
),
+ strong: (chunks) => ( {chunks} )
});
return (
diff --git a/frontend/tests/pages/process.test.tsx b/frontend/tests/pages/process.test.tsx
index 50070a6dd0..7ab22ecf9d 100644
--- a/frontend/tests/pages/process.test.tsx
+++ b/frontend/tests/pages/process.test.tsx
@@ -1,6 +1,6 @@
-import { render, screen, waitFor } from "@testing-library/react";
+import { render, screen, waitFor } from "tests/react-utils";
import { axe } from "jest-axe";
-import Process from "src/pages/process";
+import Process from "src/app/process/page";
describe("Process", () => {
it("renders alert with grants.gov link", () => {