From dbc834d19f81020c555acc5e2e88aba682ab5c89 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Thu, 11 Apr 2024 15:09:02 +0300 Subject: [PATCH] fix(left-sidebar-icon-button): remove static dot --- .../LeftSidebar/LeftSidebarIconButton.tsx | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/components/General/LeftSidebar/LeftSidebarIconButton.tsx b/src/components/General/LeftSidebar/LeftSidebarIconButton.tsx index f5a611a7..99a927b5 100644 --- a/src/components/General/LeftSidebar/LeftSidebarIconButton.tsx +++ b/src/components/General/LeftSidebar/LeftSidebarIconButton.tsx @@ -1,5 +1,4 @@ import { IconAvatarProps, IconButton } from '@status-im/components' -import { Stack } from 'tamagui' import { Link } from 'react-router-dom' type IconButtonWithDotProps = { @@ -8,7 +7,6 @@ type IconButtonWithDotProps = { } const LeftSidebarIconButton = ({ icon, path }: IconButtonWithDotProps) => { - const isDotOn = path === '/notifications' const isDisabled = path === '/advanced-analytics' || path === '/community' || @@ -23,20 +21,6 @@ const LeftSidebarIconButton = ({ icon, path }: IconButtonWithDotProps) => { selected={path === window.location.pathname} disabled={isDisabled} /> - {isDotOn && ( - - )} ) }