From fb938204d4db34bc8bb2f97052cc6b2e12005068 Mon Sep 17 00:00:00 2001 From: zmeyer44 Date: Mon, 23 Oct 2023 14:54:55 -0400 Subject: [PATCH] testing --- components/LocationSearch/index.tsx | 60 +++++++++++------------------ 1 file changed, 23 insertions(+), 37 deletions(-) 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} +
  • + ), + )} +
+
);