From 7dab5f70f925c575303a9123c4f4834942fde348 Mon Sep 17 00:00:00 2001 From: jinhojang6 Date: Fri, 4 Oct 2024 00:24:02 +0900 Subject: [PATCH] chore: update x sharing copy --- src/components/Operator/OperatorDetails/OperatorDetails.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Operator/OperatorDetails/OperatorDetails.tsx b/src/components/Operator/OperatorDetails/OperatorDetails.tsx index 11cbe50..c401699 100644 --- a/src/components/Operator/OperatorDetails/OperatorDetails.tsx +++ b/src/components/Operator/OperatorDetails/OperatorDetails.tsx @@ -57,7 +57,7 @@ const OperatorDetails: React.FC = ({ 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 = ({ // Open a new window with specific dimensions window.open( twitterUrl, - 'Share to Twitter', + 'Share on X', 'width=600,height=400,scrollbars=yes,resizable=yes', ) }