Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-17 15:29:18 +02:00
parent 7b45efc9e9
commit e439d2e911
No known key found for this signature in database
GPG key ID: CC823428E9B582FB
2 changed files with 11 additions and 12 deletions

View file

@ -18,7 +18,6 @@ import React from 'react';
import dis from '../../../dispatcher/dispatcher';
import { _t } from '../../../languageHandler';
import RoomViewStore from '../../../stores/RoomViewStore';
import PropTypes from "prop-types";
import { RoomPermalinkCreator } from "../../../utils/permalinks/Permalinks";
import { replaceableComponent } from "../../../utils/replaceableComponent";
import ReplyTile from './ReplyTile';
@ -33,11 +32,11 @@ function cancelQuoting() {
}
interface IProps {
permalinkCreator: RoomPermalinkCreator,
permalinkCreator: RoomPermalinkCreator;
}
interface IState {
event: MatrixEvent
event: MatrixEvent;
}
@replaceableComponent("views.rooms.ReplyPreview")