From c24271f15f0ea9274871221ccab430c4221b40b6 Mon Sep 17 00:00:00 2001 From: gil Date: Wed, 9 Oct 2024 15:06:52 +0200 Subject: [PATCH] imporve maps link text --- utils/helpers.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/helpers.js b/utils/helpers.js index 53e4280..3494322 100644 --- a/utils/helpers.js +++ b/utils/helpers.js @@ -30,7 +30,7 @@ const formatLocation = (location, googleMapsLink, osmLink, appleMapsLink) => { if (googleMapsLink || osmLink || appleMapsLink) { result += ' '; if (googleMapsLink) { - result += `🌍 Google Maps`; + result += `🌍 Google`; } // OpenStreetMap Link @@ -38,7 +38,7 @@ const formatLocation = (location, googleMapsLink, osmLink, appleMapsLink) => { result += ' | '; } if (osmLink) { - result += `🕵️ OpenStreetMap`; + result += `🕵️ OSM`; } // AppleMaps Link @@ -46,7 +46,7 @@ const formatLocation = (location, googleMapsLink, osmLink, appleMapsLink) => { result += ' | '; } if (appleMapsLink) { - result += ` Apple Maps`; + result += `🍏 Apple`; } result += '\n';