Use Listener label for audio room attendees in the live UI.
Deploy Ladill Meet / deploy (push) Successful in 53s

Matches Twitter Spaces terminology on speaker tiles and in the People panel.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-04 01:16:55 +00:00
co-authored by Cursor
parent 29fa6ad547
commit 57802ff7f6
+3 -3
View File
@@ -997,7 +997,7 @@ function meetRoom() {
host: 'Host', host: 'Host',
co_host: 'Co-host', co_host: 'Co-host',
panelist: 'Speaker', panelist: 'Speaker',
attendee: 'Attendee', attendee: 'Listener',
}[role] || ''; }[role] || '';
}, },
@@ -1467,8 +1467,8 @@ function meetRoom() {
const labels = { const labels = {
host: 'Host', host: 'Host',
co_host: 'Co-host', co_host: 'Co-host',
panelist: 'Panelist', panelist: this.isSpace ? 'Speaker' : 'Panelist',
attendee: 'Attendee', attendee: this.isSpace ? 'Listener' : 'Attendee',
guest: 'Guest', guest: 'Guest',
participant: 'Participant', participant: 'Participant',
}; };