Restore the accessibility role on call views (#29225)

This was mistakenly removed in a370a5cfa4. You can tell it was unintentional because the 'role' variable was just left unused.
This commit is contained in:
Robin
2025-02-11 15:28:29 +07:00
committed by GitHub
parent bc7fe25974
commit ef69c0ddc7
2 changed files with 8 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ const JoinCallView: FC<JoinCallViewProps> = ({ room, resizing, call, skipLobby,
await Promise.all(calls.map(async (call) => await call.disconnect()));
}, []);
return (
<div className="mx_CallView">
<div className="mx_CallView" role={role}>
<AppTile
app={call.widget}
room={room}