From fa9a2c606255bca67bd53fa68f2f33636a030e40 Mon Sep 17 00:00:00 2001 From: Eliot Date: Tue, 21 Jan 2025 13:44:59 +0100 Subject: [PATCH] dev(dashboard): log commit name --- web/src/comps/TopBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/comps/TopBar.tsx b/web/src/comps/TopBar.tsx index 1e7e95e..a54945a 100644 --- a/web/src/comps/TopBar.tsx +++ b/web/src/comps/TopBar.tsx @@ -13,7 +13,7 @@ function NavElement(props: { text: string, icon: any, link: string }) { const navigate = useNavigate(); const is_active = window.location.pathname.startsWith(props.link); const commit_hash = process.env.REACT_APP_COMMIT_HASH || "dev"; - + console.log(commit_hash) return (