From 03eac5624108cecbe7e3c45f7749b588094f34b9 Mon Sep 17 00:00:00 2001 From: William French Date: Thu, 7 May 2026 12:00:45 -0700 Subject: [PATCH 1/2] Change greeting message in index.ts small change to test approve-merge.yml workflow change. --- samples/test-example/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/test-example/index.ts b/samples/test-example/index.ts index 01cb2c935..5391863b9 100644 --- a/samples/test-example/index.ts +++ b/samples/test-example/index.ts @@ -44,7 +44,7 @@ async function init() { // [END maps_test_example_instantiate_marker] // [START maps_test_example_why_me] - console.log("Good afternoon! Let's eat cookies!"); + console.log("Happy Thursday! (TODO: verify whether it is actually Thursday."); // [END maps_test_example_why_me] } void init(); From ae4ea17a88e8e59f15e3ed9ad714f3717d65d5ce Mon Sep 17 00:00:00 2001 From: William French Date: Thu, 7 May 2026 12:03:38 -0700 Subject: [PATCH 2/2] Fix console.log string formatting in index.ts --- samples/test-example/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/samples/test-example/index.ts b/samples/test-example/index.ts index 5391863b9..23ae3f00e 100644 --- a/samples/test-example/index.ts +++ b/samples/test-example/index.ts @@ -44,7 +44,9 @@ async function init() { // [END maps_test_example_instantiate_marker] // [START maps_test_example_why_me] - console.log("Happy Thursday! (TODO: verify whether it is actually Thursday."); + console.log( + 'Happy Thursday! (TODO: verify whether it is actually Thursday.' + ); // [END maps_test_example_why_me] } void init();