From 474b82aa0a06dbf03caf3f64f3a74cbd58f8240c Mon Sep 17 00:00:00 2001 From: AbhishekLambda <165039502+AbhishekLambda@users.noreply.github.com> Date: Fri, 10 Apr 2026 17:25:33 +0530 Subject: [PATCH] Add Houston to the list of cities in SearchBar --- frontend/src/components/SearchBar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/SearchBar.tsx b/frontend/src/components/SearchBar.tsx index 6a5cd8a..7cca713 100644 --- a/frontend/src/components/SearchBar.tsx +++ b/frontend/src/components/SearchBar.tsx @@ -27,6 +27,7 @@ const LOCATIONS = [ { city: 'Seoul', state: 'South Korea', country: 'South Korea' }, { city: 'Ghaziabad', state: 'Uttar Pradesh', country: 'India' }, { city: 'Delhi', state: 'Delhi', country: 'India' }, + { city: 'Houston', state: 'Texas', country: 'United States' }, ]; const SearchBar = ({ onSearch, initialFilters }: SearchBarProps) => {