diff --git a/packages/frontend/src/components/shared/Sidebar/Sidebar.tsx b/packages/frontend/src/components/shared/Sidebar/Sidebar.tsx index c60ab4d3..b61b1fee 100644 --- a/packages/frontend/src/components/shared/Sidebar/Sidebar.tsx +++ b/packages/frontend/src/components/shared/Sidebar/Sidebar.tsx @@ -1,5 +1,5 @@ import React, { useCallback, useEffect, useState } from 'react'; -import { Link, NavLink, useNavigate, useParams } from 'react-router-dom'; +import { NavLink, useNavigate, useParams } from 'react-router-dom'; import { Organization } from 'gql-client'; import { Option } from '@material-tailwind/react'; @@ -16,7 +16,7 @@ import { SettingsSlidersIcon, } from 'components/shared/CustomIcon'; import { Tabs } from 'components/shared/Tabs'; -import { Heading } from 'components/shared/Heading'; +import { Logo } from 'components/Logo'; export const Sidebar = () => { const { orgSlug } = useParams(); @@ -43,18 +43,8 @@ export const Sidebar = () => { }, [disconnect, navigate]); return ( -