diff --git a/frontend/app/layout/TopRight.tsx b/frontend/app/layout/TopRight.tsx index 2623b564f..19cd8a49b 100644 --- a/frontend/app/layout/TopRight.tsx +++ b/frontend/app/layout/TopRight.tsx @@ -4,7 +4,6 @@ import Notifications from 'Components/Alerts/Notifications/Notifications'; import HealthStatus from 'Components/Header/HealthStatus'; import { getInitials } from 'App/utils'; import UserMenu from 'Components/Header/UserMenu/UserMenu'; -import ErrorGenPanel from 'App/dev/components/ErrorGenPanel'; import { connect } from 'react-redux'; import { Popover, Space } from 'antd'; import ProjectDropdown from 'Shared/ProjectDropdown'; @@ -20,7 +19,7 @@ function TopRight(props: Props) { const { account } = props; // @ts-ignore return ( - + @@ -29,14 +28,12 @@ function TopRight(props: Props) { {account.name ? : null} } placement={'topRight'}> -
-
+
+
{getInitials(account.name)}
- - {/**/} ); }