Use type imports consistently

This commit is contained in:
Robin
2025-03-27 16:09:59 -04:00
parent eb18cbef78
commit aab4efe03a

View File

@@ -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";