From 099b1aa51036111cd8c751ca286202b06be76ec4 Mon Sep 17 00:00:00 2001
From: OGBONNA SUNDAY <62995161+OgDev-01@users.noreply.github.com>
Date: Wed, 11 Oct 2023 01:29:33 +0100
Subject: [PATCH] fix: show link to hub list page in nav (#1858)
---
layouts/hub.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/layouts/hub.tsx b/layouts/hub.tsx
index fbfd6765bf..234b7a0e30 100644
--- a/layouts/hub.tsx
+++ b/layouts/hub.tsx
@@ -19,7 +19,7 @@ const HubLayout = ({ children }: { children: React.ReactNode }) => {
const { user } = useSupabaseAuth();
const navLinks = [
{ name: "Insights", href: "/hub/insights" },
- // { name: "Lists", href: "/hub/lists" },
+ { name: "Lists", href: "/hub/lists" },
];
const router = useRouter();
@@ -87,11 +87,11 @@ const HubLayout = ({ children }: { children: React.ReactNode }) => {
{router.pathname.split("/")[2] === "insights" ? (
) : (
)}