diff --git a/src/components/structures/RoomView.tsx b/src/components/structures/RoomView.tsx index 5695c7a4048..d642c36497d 100644 --- a/src/components/structures/RoomView.tsx +++ b/src/components/structures/RoomView.tsx @@ -1689,7 +1689,7 @@ export class RoomView extends React.Component { .sendStickerContentToRoom(url, roomId, threadId, info, text, this.context.client) .then(undefined, (error) => { if (error.name === "UnknownDeviceError") { - // Let the staus bar handle this + // Let the status bar handle this return; } }); diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index 0b275917db0..5c0fe391852 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -9,7 +9,7 @@ Please see LICENSE files in the repository root for full details. import React, { FC, useContext, useEffect, AriaRole, useCallback } from "react"; import type { Room } from "matrix-js-sdk/src/matrix"; -import { Call, ConnectionState, ElementCall } from "../../../models/Call"; +import { Call, ConnectionState } from "../../../models/Call"; import { useCall } from "../../../hooks/useCall"; import MatrixClientContext from "../../../contexts/MatrixClientContext"; import AppTile from "../elements/AppTile";