Skip to content

Commit

Permalink
v1 added view more options
Browse files Browse the repository at this point in the history
  • Loading branch information
git-create-devben committed Jul 22, 2024
1 parent 61fdca1 commit 9a7aff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/gemini/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function getLocalServices(query: string, latitude: string, longitude: stri
);
}

return response.data.results.slice(0, 8).map((place: any) => ({
return response.data.results.slice(0, 6).map((place: any) => ({
name: place.name,
address: place.vicinity,
rating: place.rating,
Expand Down

0 comments on commit 9a7aff8

Please sign in to comment.