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 (
@@ -63,7 +63,7 @@ export default function HeaderComponent() { {metadata.title} @@ -78,8 +78,8 @@ export default function HeaderComponent() { "flex-align-center", )} > - {/* TODO: Rework show/hide rules based on actual auth status */} - {!isLoggedIn && !LOGGED_IN_PATHS.includes(path) && ( + {/* TODO: Enable this once we can show/hide rules based on actual auth status */} + {/* {!isLoggedIn && !LOGGED_IN_PATHS.includes(path) && ( - )} + )} */} {LOGGED_IN_PATHS.includes(path) && (
)}