diff --git a/ui/component/header/view.jsx b/ui/component/header/view.jsx index 2dfa46524..2a885589e 100644 --- a/ui/component/header/view.jsx +++ b/ui/component/header/view.jsx @@ -165,11 +165,9 @@ const Header = (props: Props) => { 'header--minimal': authHeader, 'header--mac': IS_MAC, })} - // @if TARGET='app' onDoubleClick={(e) => { remote.getCurrentWindow().maximize(); }} - // @endif >
{!authHeader && canBackout ? ( diff --git a/ui/component/headerProfileMenuButton/view.jsx b/ui/component/headerProfileMenuButton/view.jsx index 297af98a5..b9144e77a 100644 --- a/ui/component/headerProfileMenuButton/view.jsx +++ b/ui/component/headerProfileMenuButton/view.jsx @@ -8,7 +8,6 @@ import classnames from 'classnames'; import HeaderMenuLink from 'component/common/header-menu-link'; import Icon from 'component/common/icon'; import React from 'react'; -import Skeleton from '@mui/material/Skeleton'; type HeaderMenuButtonProps = { activeChannelClaim: ?ChannelClaim, @@ -25,24 +24,20 @@ export default function HeaderProfileMenuButton(props: HeaderMenuButtonProps) { return (
- {activeChannelUrl === undefined ? ( - - ) : ( - - {activeChannelUrl ? ( - - ) : ( - - )} - - )} + + {activeChannelUrl ? ( + + ) : ( + + )} +