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

Commit

Permalink
Update ProcessIntro.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
acouch committed May 15, 2024
1 parent 94baa78 commit 134a00f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions frontend/src/pages/content/ProcessIntro.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { Grid } from "@trussworks/react-uswds";
import { useTranslations, useMessages } from "next-intl";

import ContentLayout from "src/components/ContentLayout";


const ProcessIntro = () => {
const t = useTranslations("Process");

const messages = useMessages();
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
const messages = useMessages() as unknown as IntlMessages;
const keys = Object.keys(messages.Process.intro.boxes);

return (
Expand Down

0 comments on commit 134a00f

Please sign in to comment.