diff --git a/src/home/CallList.tsx b/src/home/CallList.tsx index 2e3d1db3..44422587 100644 --- a/src/home/CallList.tsx +++ b/src/home/CallList.tsx @@ -6,13 +6,13 @@ Please see LICENSE in the repository root for full details. */ import { Link } from "react-router-dom"; +import { type RoomMember, type Room, type MatrixClient } from "matrix-js-sdk"; import { type FC, useCallback, type MouseEvent, useState } from "react"; import { useTranslation } from "react-i18next"; import { IconButton, Text } from "@vector-im/compound-web"; import { CloseIcon } from "@vector-im/compound-design-tokens/assets/web/icons"; import classNames from "classnames"; -import type { RoomMember, Room, MatrixClient } from "matrix-js-sdk"; import { Avatar, Size } from "../Avatar"; import styles from "./CallList.module.css"; import { getRelativeRoomUrl } from "../utils/matrix";