diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d50298..80db513 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,7 +4,6 @@ import { Inter } from 'next/font/google'; import { headers } from 'next/headers'; import { TRPCReactProvider } from '@src/trpc/react'; -import Sidebar from '@src/components/nav/Sidebar'; import { type Metadata } from 'next'; import { Analytics } from '@vercel/analytics/react'; diff --git a/src/components/nav/SidebarItems.tsx b/src/components/nav/SidebarItems.tsx index 68cfbba..f236867 100644 --- a/src/components/nav/SidebarItems.tsx +++ b/src/components/nav/SidebarItems.tsx @@ -2,7 +2,6 @@ import { type FC, useState } from 'react'; import { useRouter, usePathname } from 'next/navigation'; import { IconMap, type allCats, routeMap } from '@src/constants/categories'; -import { RightChevron } from '@src/icons/Icons'; const SidebarItems: FC<{ cat: allCats[number] }> = ({ cat }) => { const Icon = IconMap[cat];