From 7fdd7eaa1c6c13057b1c23dd3c09f6f3661b465a Mon Sep 17 00:00:00 2001 From: "exe.dev user" Date: Tue, 5 May 2026 10:14:12 +0000 Subject: [PATCH] setup: update WhatsApp link instructions to "You / Settings" WhatsApp's mobile UI calls the menu "You" on iOS and "Settings" on Android (depending on platform/version). Both QR-scan and pairing-code captions only mentioned "Settings", so iOS users had to figure out the iOS-specific path on their own. Co-Authored-By: Claude Opus 4.7 (1M context) --- setup/channels/whatsapp.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/channels/whatsapp.ts b/setup/channels/whatsapp.ts index 922c985..e95d0dc 100644 --- a/setup/channels/whatsapp.ts +++ b/setup/channels/whatsapp.ts @@ -312,7 +312,7 @@ async function renderQr(qr: string): Promise { const QRCode = await import('qrcode'); const qrText = await QRCode.toString(qr, { type: 'terminal', small: true }); const caption = k.dim( - ' Open WhatsApp → Settings → Linked Devices → Link a Device → scan.', + ' Open WhatsApp → You / Settings → Linked Devices → Link a Device → scan.', ); return [...qrText.trimEnd().split('\n'), '', caption]; } catch { @@ -328,7 +328,7 @@ function formatPairingCard(code: string): string { '', ` ${brandBold(spaced)}`, '', - k.dim(' Open WhatsApp → Settings → Linked Devices → Link a Device'), + k.dim(' Open WhatsApp → You / Settings → Linked Devices → Link a Device'), k.dim(' → "Link with phone number instead" → enter this code.'), k.dim(' It expires in ~60 seconds.'), ].join('\n');