From 82f4d05efb746adb0513ee6446102ab92366129e Mon Sep 17 00:00:00 2001 From: Mudit Singh <43745884+muditlambda@users.noreply.github.com> Date: Tue, 2 Dec 2025 22:23:54 +0530 Subject: [PATCH] Add Mumbai to the list of cities in SearchBar --- frontend/src/components/SearchBar.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/SearchBar.tsx b/frontend/src/components/SearchBar.tsx index 6a53c55..81b3329 100644 --- a/frontend/src/components/SearchBar.tsx +++ b/frontend/src/components/SearchBar.tsx @@ -27,6 +27,8 @@ const LOCATIONS = [ { city: 'Seoul', state: 'South Korea', country: 'South Korea' }, { city: 'Ghaziabad', state: 'Uttar Pradesh', country: 'India' }, { city: 'Delhi', state: 'Delhi', country: 'India' }, + { city: 'Mumbai', state: 'Maharashtra', country: 'India' }, + ]; const SearchBar = ({ onSearch, initialFilters }: SearchBarProps) => {