From 8da042259aacfb1b56bd415313d1a1607699b42b Mon Sep 17 00:00:00 2001 From: AbhishekLambda <165039502+AbhishekLambda@users.noreply.github.com> Date: Tue, 28 Oct 2025 22:11:30 +0530 Subject: [PATCH] Add Berlin to the list of locations 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 865eb9d..a3ae98a 100644 --- a/frontend/src/components/SearchBar.tsx +++ b/frontend/src/components/SearchBar.tsx @@ -27,6 +27,7 @@ const LOCATIONS = [ { city: 'London', state: 'England', country: 'United States' }, { city: 'Seoul', state: 'South Korea', country: 'United States' }, { city: 'Cairo', state: 'Egypt', country: 'United States' }, + { city: 'Berlin', state: 'Germany', country: 'United States' }, ]; const SearchBar = ({ onSearch, initialFilters }: SearchBarProps) => {