diff --git a/query-connector/src/app/query/components/header/header.tsx b/query-connector/src/app/query/components/header/header.tsx index 4c9ea135f..0e938ef36 100644 --- a/query-connector/src/app/query/components/header/header.tsx +++ b/query-connector/src/app/query/components/header/header.tsx @@ -2,7 +2,7 @@ import { useEffect, useRef, useState } from "react"; import { usePathname } from "next/navigation"; -import { Button, Icon } from "@trussworks/react-uswds"; +import { Icon } from "@trussworks/react-uswds"; import styles from "./header.module.scss"; import { metadata } from "@/app/constants"; import classNames from "classnames"; @@ -47,7 +47,7 @@ export default function HeaderComponent() { setShowMenu(!showMenu); }; const isProduction = process.env.NODE_ENV === "production"; - const backLink = "/"; + const landingPage = "/"; return (