only show notification bubble in menu button on mobile

This commit is contained in:
Sean Yesmunt 2020-08-19 12:50:12 -04:00
parent c0053a772b
commit f5de744641

View file

@ -213,7 +213,7 @@ const Header = (props: Props) => {
icon={ICONS.MENU}
onClick={() => setSidebarOpen(!sidebarOpen)}
>
{isAbsoluteSideNavHidden && <NotificationBubble />}
{isAbsoluteSideNavHidden && isMobile && <NotificationBubble />}
</Button>
</span>
)}