From 36d64be44d645f58f5a12bfa024fe4f3d3c5ae21 Mon Sep 17 00:00:00 2001 From: William French Date: Thu, 25 Jul 2024 11:17:10 -0700 Subject: [PATCH] fix: Update index.ts (#1790) Changes the place ID to a place without the word "crazy" in the title, as that could be possibly offensive to some. --- samples/place-reviews/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/place-reviews/index.ts b/samples/place-reviews/index.ts index 7687d23256..284896e61f 100644 --- a/samples/place-reviews/index.ts +++ b/samples/place-reviews/index.ts @@ -26,7 +26,7 @@ async function initMap() { // [START maps_place_reviews_get_first] // Use a place ID to create a new Place instance. const place = new Place({ - id: 'ChIJB9a4Ifl744kRlpz0BQJzGQ8', // Crazy Good Kitchen, Boston, MA + id: 'ChIJpyiwa4Zw44kRBQSGWKv4wgA', // Faneuil Hall Marketplace, Boston, MA }); // Call fetchFields, passing 'reviews' and other needed fields. @@ -76,4 +76,4 @@ async function initMap() { initMap(); // [END maps_place_reviews] -export { }; \ No newline at end of file +export { };