chore: update x sharing copy

This commit is contained in:
jinhojang6 2024-10-04 00:24:02 +09:00
parent b6c14d4e10
commit 7dab5f70f9
No known key found for this signature in database
GPG Key ID: 1762F21FE8B543F8
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ const OperatorDetails: React.FC<OperatorDetailsProps> = ({
const handleShare = () => {
const text = encodeURIComponent(
`I am ${operator?.name}. An Operator of the Parallel Society called Logos.\n\nJoin me and explore the collection at https://dashboard.logos.co`,
`I am a/an ${operator?.name}, an Operator forging Parallel Societies with Logos.\n\nEnter the portal and explore the collection at https://dashboard.logos.co`,
)
const twitterUrl = `https://x.com/intent/post?text=${text}`
@ -65,7 +65,7 @@ const OperatorDetails: React.FC<OperatorDetailsProps> = ({
// Open a new window with specific dimensions
window.open(
twitterUrl,
'Share to Twitter',
'Share on X',
'width=600,height=400,scrollbars=yes,resizable=yes',
)
}