You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const shareLink =computed(() =>domain.value?`https://twitter.com/intent/tweet?text=${encodeURIComponent(`Check out the Page Speed results for ${domain.value.replace(/\./g, '.\x00')}`+`\n\nhttps://page-speed.dev/${domain.value}`)}`:'See and share PageSpeed Insights results simply and easily.')
210
+
const shareLink =computed(() =>domain.value?`https://twitter.com/intent/tweet?text=${encodeURIComponent(`Check out the Page Speed results for ${domain.value.replace(/\./g, '.')}`+`\n\nhttps://page-speed.dev/${domain.value}`)}`:'See and share PageSpeed Insights results simply and easily.')
217
211
218
212
asyncfunction nativeShare () {
219
213
try {
220
214
if (navigator.share) {
221
215
returnawaitnavigator.share({
222
216
title: 'page-speed.dev',
223
-
text: `See page speed results for ${domain.value.replace(/\./g, '.\x00')}`,
224
-
url: `https://page-speed.dev/${domain.value}`,
217
+
text: `See page speed results for ${domain.value.replace(/\./g, '.')}`,
0 commit comments