From 16b6484d3404e6eafb579d7ee3d513e352c73f5d Mon Sep 17 00:00:00 2001 From: Jeff Sieu Date: Fri, 21 Oct 2022 21:12:52 +0800 Subject: [PATCH] [question][ui] add Home to navigation --- apps/portal/src/components/questions/QuestionsNavigation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/portal/src/components/questions/QuestionsNavigation.ts b/apps/portal/src/components/questions/QuestionsNavigation.ts index 58278119..704e6a59 100644 --- a/apps/portal/src/components/questions/QuestionsNavigation.ts +++ b/apps/portal/src/components/questions/QuestionsNavigation.ts @@ -1,6 +1,7 @@ import type { ProductNavigationItems } from '~/components/global/ProductNavigation'; const navigation: ProductNavigationItems = [ + { href: '/questions', name: 'Home' }, { href: '/questions/lists', name: 'My Lists' }, { href: '/questions/my-questions', name: 'My Questions' }, { href: '/questions/history', name: 'History' },