Update typescript-eslint monorepo to v8 (major) (#2523)
* Update typescript-eslint monorepo to v8 * es lint fixes --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Timo <toger5@hotmail.de>
This commit is contained in:
@@ -134,7 +134,7 @@ export function useGroupCallRooms(client: MatrixClient): GroupCallRoom[] {
|
||||
|
||||
useEffect(() => {
|
||||
function updateRooms(): void {
|
||||
// We want to show all rooms that historically had a call and which we are (can become) part of.
|
||||
// We want to show all rooms that historically had a call and which we are (or can become) part of.
|
||||
const rooms = client
|
||||
.getRooms()
|
||||
.filter(roomHasCallMembershipEvents)
|
||||
@@ -142,7 +142,6 @@ export function useGroupCallRooms(client: MatrixClient): GroupCallRoom[] {
|
||||
const sortedRooms = sortRooms(client, rooms);
|
||||
const items = sortedRooms.map((room) => {
|
||||
const session = client.matrixRTC.getRoomSession(room);
|
||||
session.memberships;
|
||||
return {
|
||||
roomAlias: room.getCanonicalAlias() ?? undefined,
|
||||
roomName: room.name,
|
||||
|
||||
Reference in New Issue
Block a user