diff --git a/web/components/love-page.tsx b/web/components/love-page.tsx
index e863bad6..2d5b02db 100644
--- a/web/components/love-page.tsx
+++ b/web/components/love-page.tsx
@@ -99,7 +99,7 @@ export function LovePage(props: {
const Profiles = { name: 'Profiles', href: '/', icon: SolidHomeIcon };
const ProfilesHome = { name: 'Profiles', href: '/', icon: HomeIcon };
-const faq = { name: 'FAQ', href: '/md/faq', icon: QuestionMarkCircleIcon };
+const faq = { name: 'FAQ', href: '/faq', icon: SolidQuestionIcon };
const About = { name: 'About', href: '/about', icon: SolidQuestionIcon };
const AboutQuestionMark = { name: 'About', href: '/about', icon: QuestionMarkCircleIcon };
const Signin = { name: 'Sign in', href: '/signin', icon: UserCircleIcon };
diff --git a/web/components/nav/love-bottom-nav-bar.tsx b/web/components/nav/love-bottom-nav-bar.tsx
index 41bee5ba..daead855 100644
--- a/web/components/nav/love-bottom-nav-bar.tsx
+++ b/web/components/nav/love-bottom-nav-bar.tsx
@@ -149,8 +149,7 @@ function NavBarItem(props: {
}
const currentBasePath = '/' + (currentPage?.split('/')[1] ?? '')
- const isCurrentPage =
- item.href != null && currentBasePath === item.href.split('?')[0]
+ const isCurrentPage = currentBasePath === item.href.split('?')[0]
return (