Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions src/components/Card/share-asset/rejectionCaptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@
*/

export const REJECTION_CAPTIONS: readonly string[] = [
'rejected by @joinpeanut 🚫 the door policy is insane. i WILL be back.',
'rejected by @joinpeanut 🚫 the door policy is insane.',
'@joinpeanut has a bouncer now??',
"@joinpeanut told me i'm not on the list 💀 the AUDACITY",
"the @joinpeanut bouncer said come back when i'm somebody. ok bet.",
'got read for filth by the @joinpeanut door',
'officially rejected by @joinpeanut. honestly an honor 🥜🚫',
'officially rejected by @joinpeanut.',
'collected my first @joinpeanut badge: REJECTED 💀',
'took an L at the @joinpeanut door. building my comeback arc.',
"denied at the @joinpeanut door. the bouncer didn't even blink 🚫",
"@joinpeanut said NOT TONIGHT. guess i'll fix my whole life and come back",
'turned away from @joinpeanut 💀 most exclusive door in crypto fr',
"@joinpeanut said NOT TONIGHT. guess i'll fix my whole life",
'turned away from @joinpeanut 💀',
"couldn't get past the @joinpeanut velvet rope. humbling.",
'@joinpeanut rejection #1. framing this one.',
'the @joinpeanut door looked me up and down and said no. respect.',
Expand All @@ -31,6 +32,8 @@ export const REJECTION_CAPTIONS: readonly string[] = [
'tried the @joinpeanut door. NOT TONIGHT. comeback arc loading.',
"@joinpeanut rejected me and i've never wanted in more 💀",
'took an L at the @joinpeanut door tonight. tomorrow we ride again.',
"remember @joinpeanut from devconnect?? they've rejected me from their beta programme omg",
"rember @joinpeanut from devconnect?? seems they're back but also they don't want users ??? WHAT?",
Comment on lines +35 to +36

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Fix the typo in the new Devconnect caption.

Line 36 says rember, and this string is passed straight through to the X intent text, so the typo becomes user-visible in shared posts.

Suggested fix
-    "rember `@joinpeanut` from devconnect?? seems they're back but also they don't want users ??? WHAT?",
+    "remember `@joinpeanut` from devconnect?? seems they're back but also they don't want users ??? WHAT?",
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"remember @joinpeanut from devconnect?? they've rejected me from their beta programme omg",
"rember @joinpeanut from devconnect?? seems they're back but also they don't want users ??? WHAT?",
"remember `@joinpeanut` from devconnect?? they've rejected me from their beta programme omg",
"remember `@joinpeanut` from devconnect?? seems they're back but also they don't want users ??? WHAT?",
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/components/Card/share-asset/rejectionCaptions.ts` around lines 35 - 36,
The new Devconnect caption contains a visible typo in the shared X intent text.
Update the second string in rejectionCaptions so it uses the correct spelling of
“remember” (not “rember”), keeping the rest of the caption unchanged.

]

/** Pick a random caption. Browser-only (Math.random) — fine at share time. */
Expand Down
2 changes: 2 additions & 0 deletions src/components/Card/share-asset/winCaptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ export const WIN_CAPTIONS: readonly string[] = [
'banked by @joinpeanut. unbothered.',
"who needs a bank? i've got @joinpeanut.",
"broke up with my bank. it's @joinpeanut now.",
"remember @joinpeanut from argentina? they're global now. just got into their closed beta",
"saw @joinpeanut in argentina. they went global — and i'm in the closed beta.",
]

/** Pick a random caption. Browser-only (Math.random) — fine at share time. */
Expand Down
Loading