From 83ba37d6d8fe4c9de1ca4b6e8b631699fa8f7b9b Mon Sep 17 00:00:00 2001 From: Ryan Westfall Date: Sat, 1 Aug 2026 14:29:07 -0500 Subject: [PATCH] Show Beta Hesychia sidenav brand on beta deploy (#77) Use REACT_APP_DEPLOY_ENV so beta builds display Beta Hesychia instead of Hesychia in the dashboard sidenav. --- .../DashboardWrapperLayout/DashboardWrapperLayout.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/llm-fe/src/llm-fe/components/DashboardWrapperLayout/DashboardWrapperLayout.tsx b/llm-fe/src/llm-fe/components/DashboardWrapperLayout/DashboardWrapperLayout.tsx index 2a046a1..852dacc 100644 --- a/llm-fe/src/llm-fe/components/DashboardWrapperLayout/DashboardWrapperLayout.tsx +++ b/llm-fe/src/llm-fe/components/DashboardWrapperLayout/DashboardWrapperLayout.tsx @@ -39,6 +39,8 @@ const DashboardWrapperLayout = ({ children }: DashboardWrapperLayoutProps): JSX. const [onMouseEnter, setOnMouseEnter] = useState(false); const [rtlCache, setRtlCache] = useState(null); const { pathname } = useLocation(); + const brandName = + process.env.REACT_APP_DEPLOY_ENV === "beta" ? "Beta Hesychia" : "Hesychia"; // Cache for the rtl useMemo(() => { @@ -115,7 +117,7 @@ const DashboardWrapperLayout = ({ children }: DashboardWrapperLayoutProps): JSX.