diff --git a/src/pages/Listings.tsx b/src/pages/Listings.tsx index 184989f..bfadde3 100644 --- a/src/pages/Listings.tsx +++ b/src/pages/Listings.tsx @@ -1,6 +1,6 @@ import { useState, useEffect } from 'react'; import { useSearchParams } from 'react-router-dom'; -import { ListFilter, Search, X } from 'lucide-react'; +import { Search } from 'lucide-react'; import ListingCard from '../components/listings/ListingCard'; import Button from '../components/common/Button'; @@ -12,10 +12,9 @@ const Listings: React.FC = () => { const [listings, setListings] = useState
- Category:{' '} - - {categories.find(c => c.id === categoryFilter)?.name} - + Category: {activeCategory.name}
)} @@ -164,7 +159,7 @@ const Listings: React.FC = () => { {/* RESULTS */} {filteredListings.length > 0 ? (