From b2eecd008b29f30045449dc774980c3297917381 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Sun, 26 Apr 2026 09:43:25 -0500 Subject: [PATCH] fix: consolidate @/lib/routes imports --- components/navbar.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/navbar.tsx b/components/navbar.tsx index 12241f8..634a70b 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -6,11 +6,10 @@ import Image from "next/image" import Link from "next/link" import { useEffect, useRef, useState } from "react" import { Bookmark, CircleXIcon, Gamepad2Icon, LogOut, MenuIcon, User, XIcon } from "lucide-react" -import { routes } from "@/lib/routes" +import { routes, authRoutes } from "@/lib/routes" import { usePathname, useRouter, useSearchParams } from "next/navigation" import { useDebounce } from "@/lib/hooks/useDebounce" import { authClient, useSession } from "@/lib/auth-client" -import { authRoutes } from "@/lib/routes" export default function Navbar() { const pathname = usePathname()