From addd5433466fbb5899629f8b756fa5bac42a7e1a Mon Sep 17 00:00:00 2001 From: Mitrasish Mukherjee Date: Mon, 3 Jan 2022 23:12:51 +0530 Subject: [PATCH] feat: fix social sharing twitter handle and hashtag --- .../components/SharePopup/SharePopup.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/Sites/routes/Deployment/components/SharePopup/SharePopup.tsx b/src/components/Sites/routes/Deployment/components/SharePopup/SharePopup.tsx index bfe8dfbe..b20d6255 100644 --- a/src/components/Sites/routes/Deployment/components/SharePopup/SharePopup.tsx +++ b/src/components/Sites/routes/Deployment/components/SharePopup/SharePopup.tsx @@ -72,25 +72,25 @@ const SharePopup: React.FC = ({ const shareAchievement = (platform: string) => { switch (platform) { case "twitter": - return `I decentralized my web app using @argoapplive.%0a%0aCheck it out at ${link} deployed on ${showProtocolText( + return `I decentralized my web app using @SpheronHQ.%0a%0aCheck it out at ${link} deployed on ${showProtocolText( protocol, platform, - )}. 🥳%0a%0a%23PoweredByArGoApp`; + )}. 🥳%0a%0a%23PoweredBySpheron`; case "fb": - return `I decentralized my web app using ArGoApp.%0a%0aCheck it out at ${link} deployed on ${showProtocolText( + return `I decentralized my web app using Spheron Protocol.%0a%0aCheck it out at ${link} deployed on ${showProtocolText( protocol, platform, - )}. 🥳%0a%0a%23PoweredByArGoApp`; + )}. 🥳%0a%0a%23PoweredBySpheron`; case "telegram": return `I decentralized my web app using @argoofficial.%0a%0aCheck it out at ${link} deployed on ${showProtocolText( protocol, platform, - )}. 🥳%0a%0a%23PoweredByArGoApp`; + )}. 🥳%0a%0a%23PoweredBySpheron`; case "mail": - return `I decentralized my web app using ArGoApp.%0a%0aCheck it out at ${link} deployed on ${showProtocolText( + return `I decentralized my web app using Spheron Protocol.%0a%0aCheck it out at ${link} deployed on ${showProtocolText( protocol, platform, - )}. 🥳%0a%0a%23PoweredByArGoApp`; + )}. 🥳%0a%0a%23PoweredBySpheron`; default: return ""; }