From 08644f944f7c1464fb8234347a4096cda0f6b715 Mon Sep 17 00:00:00 2001 From: Alexander Liteplo Date: Wed, 10 Dec 2025 08:15:15 -0800 Subject: [PATCH 1/5] pushing potential copy update --- src/hooks/useTwitter.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hooks/useTwitter.ts b/src/hooks/useTwitter.ts index f7df1ed98..a56cc18bb 100644 --- a/src/hooks/useTwitter.ts +++ b/src/hooks/useTwitter.ts @@ -5,19 +5,19 @@ import { twitterShareContestActive } from "utils"; const contestActiveParams = { cardTitle: "Win 1,000 ACX!", cardSubtitle: - "Post your transaction speed on X for a chance to win this week's 1,000 ACX giveaway #PoweredByIntents", + "Post your transaction speed on X for a chance to win this week's 1,000 ACX giveaway. Powered by Intents.", modalTitle: "Share for a Chance to Win 1,000 ACX!", }; const contestInactiveParams = { - cardTitle: "Wow, that was fast!", + cardTitle: "Share your move.", cardSubtitle: - "This deserves a tweet. Show your friends how fast you bridged! #PoweredByIntents", + "You get places fast, don't let your friends miss out!", modalTitle: "Too Fast Not to Share", }; const tweetText = - "Check out how fast I just bridged with @AcrossProtocol\n #PoweredByIntents ⛺"; + "Check out how fast I just bridged with @AcrossProtocol.\n\nPowered by Intents. ⛺"; export function useTwitter() { const { helpers } = useCurrentBreakpoint(); From 99e04d1a6a737701fd529889ef31526d2e37ed98 Mon Sep 17 00:00:00 2001 From: Alexander Liteplo Date: Wed, 10 Dec 2025 08:58:50 -0800 Subject: [PATCH 2/5] updating readme with correct node version (dependency on protocol repo) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e71f8bd14..baaea99a1 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Web UI for Across. ### Requirements - [yarn v1.22.22](https://classic.yarnpkg.com/en/docs/install) -- NodeJS >=v20 +- NodeJS >=22.18.0 - [Vercel CLI (35 or higher)](https://vercel.com/docs/cli) ### Local setup From 2942154b6a699a16add07c28ef5d1e5b1d1b170d Mon Sep 17 00:00:00 2001 From: Alexander Liteplo Date: Wed, 10 Dec 2025 09:19:39 -0800 Subject: [PATCH 3/5] linting --- src/hooks/useTwitter.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/hooks/useTwitter.ts b/src/hooks/useTwitter.ts index a56cc18bb..594dcbe7d 100644 --- a/src/hooks/useTwitter.ts +++ b/src/hooks/useTwitter.ts @@ -11,8 +11,7 @@ const contestActiveParams = { const contestInactiveParams = { cardTitle: "Share your move.", - cardSubtitle: - "You get places fast, don't let your friends miss out!", + cardSubtitle: "You get places fast, don't let your friends miss out!", modalTitle: "Too Fast Not to Share", }; From 11d61c84e1a58aba6168900146b4508ee43f0148 Mon Sep 17 00:00:00 2001 From: Alexander Liteplo Date: Tue, 16 Dec 2025 10:12:35 -0800 Subject: [PATCH 4/5] updating copy to Benni's work --- src/hooks/useTwitter.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hooks/useTwitter.ts b/src/hooks/useTwitter.ts index 594dcbe7d..c449ee674 100644 --- a/src/hooks/useTwitter.ts +++ b/src/hooks/useTwitter.ts @@ -10,13 +10,13 @@ const contestActiveParams = { }; const contestInactiveParams = { - cardTitle: "Share your move.", - cardSubtitle: "You get places fast, don't let your friends miss out!", + cardTitle: "That was fast! Tell the world!", + cardSubtitle: "", modalTitle: "Too Fast Not to Share", }; const tweetText = - "Check out how fast I just bridged with @AcrossProtocol.\n\nPowered by Intents. ⛺"; + "Check out how fast I just bridged.\n\nGet there with @AcrossProtocol"; export function useTwitter() { const { helpers } = useCurrentBreakpoint(); From 2a1fb8ed01786f90ebb1883f77d95510820d2466 Mon Sep 17 00:00:00 2001 From: Gerhard Steenkamp Date: Wed, 17 Dec 2025 12:59:43 +0200 Subject: [PATCH 5/5] style fix Signed-off-by: Gerhard Steenkamp --- .../DepositStatus/components/TwitterShare/TwitterShareCard.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/DepositStatus/components/TwitterShare/TwitterShareCard.tsx b/src/views/DepositStatus/components/TwitterShare/TwitterShareCard.tsx index 44e9c7d5d..a8e02f0e7 100644 --- a/src/views/DepositStatus/components/TwitterShare/TwitterShareCard.tsx +++ b/src/views/DepositStatus/components/TwitterShare/TwitterShareCard.tsx @@ -98,6 +98,7 @@ export function TwitterShareCard(props: TwitterShareProps) { } const Card = styled.div` + width: 100%; display: flex; flex-direction: column; align-items: center; @@ -171,5 +172,6 @@ const Button = styled(SecondaryButton)` @media ${QUERIES.tabletAndUp} { width: unset; + margin-left: auto; } `;