From aab4efe03a4bb7146d24d04920420bc4bad8cc83 Mon Sep 17 00:00:00 2001 From: Robin Date: Thu, 27 Mar 2025 16:09:59 -0400 Subject: [PATCH] Use type imports consistently --- src/home/CallList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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";