diff --git a/scripts/test-site-access-help.mjs b/scripts/test-site-access-help.mjs index cf5daa0..e9c8424 100644 --- a/scripts/test-site-access-help.mjs +++ b/scripts/test-site-access-help.mjs @@ -38,8 +38,8 @@ assert.match(helpPage, /Access requested/, 'help page must explain the new Chromium access-request UI'); assert.match(helpPage, /Firefox/, 'help page must include Firefox-specific recovery instructions'); -assert.match(helpPage, /“Peers \(1\)” only shows yourself/, - 'help page must distinguish relay peer visibility from website access'); +assert.doesNotMatch(helpPage, /Peers \(1\)|Separate issue/, + 'website-access help must not include unrelated relay troubleshooting'); assert.match(helpPage, /video and audio stream never leave your browser/, 'help page must explain the privacy boundary of the permission'); assert.match(helpPage, /support\.google\.com\/chrome/); diff --git a/website/site-access-help.html b/website/site-access-help.html index ccbbc0b..a2c0650 100644 --- a/website/site-access-help.html +++ b/website/site-access-help.html @@ -134,18 +134,6 @@ -
- Separate issue -

“Peers (1)” only shows yourself

-

Website access does not control the relay participant list. If both people see the same room name but each report lists only themselves, the relay has not placed both connections into the same live room state.

- -
-
Back to KoalaSync Report a reproducible issue diff --git a/website/styles/support.css b/website/styles/support.css index ca900c2..bb698e0 100644 --- a/website/styles/support.css +++ b/website/styles/support.css @@ -210,16 +210,6 @@ min-width: 180px; } -.support-separate-issue { - border-color: color-mix(in oklch, var(--accent-terracotta) 45%, transparent); -} - -.support-separate-issue .support-eyebrow { - border-color: color-mix(in oklch, var(--accent-terracotta) 40%, transparent); - background: color-mix(in oklch, var(--accent-terracotta) 10%, var(--card)); - color: var(--accent-terracotta); -} - html.theme-light .support-card, html.theme-light .support-callout { background-color: var(--card-surface);