A social knowledge tool for researchers built on ATProto

chore: remove unused import

+1 -3
+1 -3
src/webapp/components/navigation/bottomBarItem/BottomBarItem.tsx
··· 1 1 import { IconType } from 'react-icons/lib'; 2 2 import { ActionIcon } from '@mantine/core'; 3 - import { usePathname } from 'next/navigation'; 4 3 import Link from 'next/link'; 5 4 import { ReactElement, isValidElement } from 'react'; 6 - import { useColorScheme } from '@mantine/hooks'; 5 + import { usePathname } from 'next/navigation'; 7 6 8 7 interface Props { 9 8 href: string; ··· 11 10 } 12 11 13 12 export default function BottomBarItem(props: Props) { 14 - const colorScheme = useColorScheme(); 15 13 const pathname = usePathname(); 16 14 const isActive = pathname === props.href; 17 15