From e34bba85cb6bcf96dbd9b14e4cddf396bdfdfa96 Mon Sep 17 00:00:00 2001 From: William French Date: Thu, 26 Feb 2026 10:20:06 -0800 Subject: [PATCH] test: Update comment for closing info window logic A new change to test a workflow update (this was not building dist output) --- samples/event-poi/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/event-poi/index.ts b/samples/event-poi/index.ts index 6a6a19f8..f7b1d50b 100644 --- a/samples/event-poi/index.ts +++ b/samples/event-poi/index.ts @@ -31,7 +31,7 @@ async function initMap() { if (isIconMouseEvent(event) && event.placeId) { showInfoWindow(event, infowindow); } else { - // Otherwise, close the info window. + // Close the info window if there is no placeId. infowindow.close(); } });