From dfe83ceee578b02dc47263659a5d4fd5f5de5e69 Mon Sep 17 00:00:00 2001 From: AbhishekLambda <165039502+AbhishekLambda@users.noreply.github.com> Date: Fri, 10 Apr 2026 19:22:14 +0530 Subject: [PATCH] Replace Delhi and Ghaziabad with Mumbai in locations --- frontend/src/components/SearchBar.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/components/SearchBar.tsx b/frontend/src/components/SearchBar.tsx index 6a5cd8a..b5ef688 100644 --- a/frontend/src/components/SearchBar.tsx +++ b/frontend/src/components/SearchBar.tsx @@ -25,8 +25,7 @@ const LOCATIONS = [ { city: 'Denver', state: 'Colorado', country: 'United States' }, { city: 'Los Angeles', state: 'California', country: 'United States' }, { 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) => {