From 1213ec940bc6d431be6ed45a12a2fcfb1761c642 Mon Sep 17 00:00:00 2001 From: AbhishekLambda <165039502+AbhishekLambda@users.noreply.github.com> Date: Mon, 18 May 2026 14:16:35 +0530 Subject: [PATCH] Remove Seoul and add Bangalore to location list --- frontend/src/components/SearchBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/SearchBar.tsx b/frontend/src/components/SearchBar.tsx index 6a5cd8a..417799f 100644 --- a/frontend/src/components/SearchBar.tsx +++ b/frontend/src/components/SearchBar.tsx @@ -24,9 +24,9 @@ const LOCATIONS = [ { city: 'New Orleans', state: 'Louisiana', country: 'United States' }, { 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: 'Bangalore', state: 'Karnataka', country: 'India' }, ]; const SearchBar = ({ onSearch, initialFilters }: SearchBarProps) => {