diff --git a/components/LocationSearch/index.tsx b/components/LocationSearch/index.tsx index 809ff38..65bc33b 100644 --- a/components/LocationSearch/index.tsx +++ b/components/LocationSearch/index.tsx @@ -72,49 +72,35 @@ function CommandSearch() { - - +
setValue(e.target.value)} placeholder="Search places..." disabled={!ready} /> - - No results found. - - {data.map( - ({ - description, - place_id, - structured_formatting: { main_text, secondary_text }, - }) => ( - - - {main_text} - {description} - - ), - )} - - - - - - Profile - - - - Mail - - - - Settings - - - - +
    + {data.map( + ({ + description, + place_id, + structured_formatting: { main_text, secondary_text }, + }) => ( +
  • + + {main_text} + {description} +
  • + ), + )} +
+
);