From 3ccb4e5ceae29a369addb86399104f47ef749c0b Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Wed, 9 Sep 2026 11:35:31 -0400 Subject: [PATCH 1/2] Remove default ver prop from homePage.jsx Only used in the navbar component which internally already uses a default value. Edit and New already have this removed. --- client/homebrew/pages/homePage/homePage.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/client/homebrew/pages/homePage/homePage.jsx b/client/homebrew/pages/homePage/homePage.jsx index 4dc505ea9..3ae1c50a4 100644 --- a/client/homebrew/pages/homePage/homePage.jsx +++ b/client/homebrew/pages/homePage/homePage.jsx @@ -41,7 +41,6 @@ const neverSaved = true; const HomePage =(props)=>{ props = { brew : DEFAULT_BREW, - ver : '0.0.0', ...props }; From 15a20079dd2f6a7ec095aed7cddc4fa2e0865b17 Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Wed, 9 Sep 2026 11:37:25 -0400 Subject: [PATCH 2/2] Remove commented "chrome warning" from navbar.jsx Warning when non-chrome browser is detected already moved to a different file. No need to keep this commented-out chunk left here in navbar.jsx. --- client/homebrew/navbar/navbar.jsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/client/homebrew/navbar/navbar.jsx b/client/homebrew/navbar/navbar.jsx index db9a836c9..40e5aef71 100644 --- a/client/homebrew/navbar/navbar.jsx +++ b/client/homebrew/navbar/navbar.jsx @@ -9,22 +9,10 @@ const Navbar = createReactClass({ displayName : 'Navbar', getInitialState : function() { return { - // showNonChromeWarning: false, // uncomment if needed ver : global.version || '0.0.0' }; }, - /* - renderChromeWarning : function(){ - if(!this.state.showNonChromeWarning) return; - return - Optimized for Chrome -
- If you are experiencing rendering issues, use Chrome instead -
-
- }, -*/ render : function(){ return