Skip to content

Commit

Permalink
chore: avoid preview linking to domain
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Feb 1, 2024
1 parent 8702fbd commit 71b54cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ async function nativeShare () {
if (navigator.share) {
return await navigator.share({
title: 'page-speed.dev',
text: `See page speed results for ${domain.value}`,
text: `See page speed results for ${domain.value.replace(/\./g, '.\x00')}`,
url: `https://page-speed.dev/${domain.value}`,
})
}
Expand Down

0 comments on commit 71b54cb

Please sign in to comment.