diff --git a/main.js b/main.js index 9dc94ee..b5f9a57 100644 --- a/main.js +++ b/main.js @@ -117,7 +117,7 @@ let lat = document.querySelector(`input[name="cp[lattitude]"]`).value let lon = document.querySelector(`input[name="cp[longitude]"]`).value - const text = new Blob([`(${lat}, ${lon})`], { type: "text/plain" }); + const text = new Blob([`${lat}, ${lon}`], { type: "text/plain" }); const data = new ClipboardItem({ "text/plain": text }); await navigator.clipboard.write([data]); })