diff --git a/client/homebrew/homebrew.jsx b/client/homebrew/homebrew.jsx
index c1b3f7a96..933971c04 100644
--- a/client/homebrew/homebrew.jsx
+++ b/client/homebrew/homebrew.jsx
@@ -55,14 +55,11 @@ const Homebrew = (props)=>{
const backgroundObject = ()=>{
if(!isClient) return null;
- if(config.deployment) {
- return {
- backgroundImage : `url("data:image/svg+xml;utf8,")`
- };
- } else if(config.local) {
- return {
- backgroundImage : `url("data:image/svg+xml;utf8,")`
- };
+ if(config.deployment || config.local){
+ const bgText = config.deployment || 'Local';
+ return {
+ backgroundImage : `url("data:image/svg+xml;utf8,")`
+ };
}
return null;
};