Skip to content

Commit 9683d17

Browse files
committed
changed in share-url Gitcoin=>@gitcoin
1 parent 635ec6e commit 9683d17

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/grant-explorer/src/features/common/ShareButtons.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export function createTwitterShareUrl(props: TwitterButtonParams) {
9494
}
9595

9696
export function createTwitterAttestationShareText(attestationLink: string) {
97-
return `Just minted my donation on Gitcoin 🫡\n\nMy impact is now onchain!\n\n${attestationLink}`;
97+
return `Just minted my donation on @gitcoin 🫡\n\nMy impact is now onchain!\n\n${attestationLink}`;
9898
}
9999

100100
export function createTwitterAttestationShareUrl(attestationLink: string) {
@@ -105,11 +105,11 @@ export function createTwitterAttestationShareUrl(attestationLink: string) {
105105
}
106106

107107
export function getFarcasterAttestationShareText() {
108-
const encodedText1 = encodeURIComponent(
109-
`Just minted my donation on Gitcoin 🫡\n\nMy impact is now onchain!`
110-
);
108+
const encodedText1 = encodeURIComponent(`Just minted my donation on `);
109+
const encodedText2 = encodeURIComponent(` 🫡\n\nMy impact is now onchain!`);
110+
111111
// NB: mentions should not be encoded
112-
return encodedText1;
112+
return `${encodedText1}@gitcoin${encodedText2}`;
113113
}
114114

115115
export function createFarcasterShareUrl(

0 commit comments

Comments
 (0)