diff --git a/frontend/src/app/buy/page.tsx b/frontend/src/app/buy/page.tsx index 2c99d91..c81b738 100644 --- a/frontend/src/app/buy/page.tsx +++ b/frontend/src/app/buy/page.tsx @@ -1,6 +1,7 @@ 'use client' import { useEffect, useState } from 'react' +import { useStore } from '@/lib/store' import { api } from '@/lib/api' import { Header } from '@/components/Header' import { Footer } from '@/components/Footer' @@ -36,6 +37,7 @@ interface Listing { } export default function BrowseListingsPage() { + const { isAuthenticated, checkAuth, isLoading: authLoading } = useStore() const [listings, setListings] = useState
Contact requires login
++ Listing details are public. To protect sellers from spam, inquiries are only available for logged-in accounts. +
+