You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`\'` inside a TS template literal collapses to `'` at compile time, so
two strings like '<p>...you\'ll...</p>' served as JS were ending the
single-quoted string at the apostrophe, leaving `ll recognise...` as
raw tokens. Browser console: "Uncaught SyntaxError: Unexpected
identifier 'll'" at the first occurrence (line 1154 of the served HTML).
That hard-failed the entire script, which is why the pair-URL popup
never appeared.
Rephrase the two affected strings to drop the apostrophe rather than
double-escape — escapes are easy to regress on the next edit.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
+ '<p class="modal-subtitle">Auto-approve runs ' + agent + ' with permission prompts skipped. Enter your laptop\'s macOS password. You\'ll only be asked once per pairing.</p>';
1516
+
+ '<p class="modal-subtitle">Auto-approve runs ' + agent + ' with permission prompts skipped. Enter the macOS password for your laptop. Asked once per pairing.</p>';
0 commit comments