diff --git a/scruter-nextjs/app/(routes)/(mainNavPages)/food/page.tsx b/scruter-nextjs/app/(routes)/(mainNavPages)/food/page.tsx index de891e3b..f48da5e7 100644 --- a/scruter-nextjs/app/(routes)/(mainNavPages)/food/page.tsx +++ b/scruter-nextjs/app/(routes)/(mainNavPages)/food/page.tsx @@ -7,6 +7,7 @@ import { faSearch } from '@fortawesome/free-solid-svg-icons'; // Import FontAwes import { GetAllListing, ListingWithImages } from '@/actions/seller/listing'; import toast, { Toaster } from 'react-hot-toast'; import ListingCardFE from '@/components/listingCardFE'; +import { Search } from 'lucide-react'; const FoodPage: React.FC = () => { const [foodItems, setFoodItems] = useState([]); @@ -82,8 +83,7 @@ const FoodPage: React.FC = () => { value={query} onChange={e => setQuery(e.target.value)} /> - diff --git a/scruter-nextjs/app/seller/[sellerId]/components/main.tsx b/scruter-nextjs/app/seller/[sellerId]/components/main.tsx index d01f000f..5a17abfd 100644 --- a/scruter-nextjs/app/seller/[sellerId]/components/main.tsx +++ b/scruter-nextjs/app/seller/[sellerId]/components/main.tsx @@ -4,6 +4,7 @@ import ListingDetails from './listingDetails'; import SelectCategory from './selectCategory'; import { Toaster } from 'react-hot-toast'; import SelectImage from './selectImage'; +import MapLocationForm from './mapLocationForm'; const Main = ({ sellerId }: { sellerId: string }) => { const { @@ -83,6 +84,7 @@ const Main = ({ sellerId }: { sellerId: string }) => { {currentStep === 1 && } {currentStep === 2 && } {currentStep === 3 && } + {currentStep === 4 && } {!formCompleted && (