diff --git a/packages/bruno-app/src/components/Sidebar/MenuBar/index.js b/packages/bruno-app/src/components/Sidebar/MenuBar/index.js index 12ac48f71..5a906f9e4 100644 --- a/packages/bruno-app/src/components/Sidebar/MenuBar/index.js +++ b/packages/bruno-app/src/components/Sidebar/MenuBar/index.js @@ -5,12 +5,14 @@ import { IconCode, IconFiles, IconUser, IconUsers, IconSettings, IconChevronsLef import { useDispatch } from 'react-redux'; import { toggleLeftMenuBar } from 'providers/ReduxStore/slices/app'; import BrunoSupport from 'components/BrunoSupport'; +import { isElectron } from 'utils/common/platform'; import StyledWrapper from './StyledWrapper'; const MenuBar = () => { const router = useRouter(); const dispatch = useDispatch(); const [openBrunoSupport, setOpenBrunoSupport] = useState(false); + const isPlatformElectron = isElectron(); const getClassName = (menu) => { return router.pathname === menu ? "active menu-item": "menu-item"; @@ -24,11 +26,13 @@ const MenuBar = () => { - + {isPlatformElectron ? ( +
- + + ) : null} {/*
*/} diff --git a/packages/bruno-electron/package.json b/packages/bruno-electron/package.json index 532822474..008c20296 100644 --- a/packages/bruno-electron/package.json +++ b/packages/bruno-electron/package.json @@ -2,6 +2,7 @@ "version": "0.1.0", "name": "bruno", "description": "Opensource API Client", + "homepage": "https://www.usebruno.com", "private": true, "main": "src/index.js", "author": "Anoop M D (https://helloanoop.com/)",