Fix missing prop

This commit is contained in:
Germain Souquet 2021-09-28 11:06:06 +01:00
parent e52a33e93c
commit 160bf8e21f
2 changed files with 2 additions and 2 deletions

View file

@ -135,11 +135,10 @@ interface IMessageActionBarProps {
getTile: () => any | null;
getReplyThread: () => ReplyThread | undefined;
permalinkCreator?: RoomPermalinkCreator;
getTile: () => any; // TODO: FIXME, haven't figured out what the return type is here
getReplyThread?: () => ReplyThread;
onFocusChange?: (menuDisplayed: boolean) => void;
toggleThreadExpanded: () => void;
isInThreadTimeline?: boolean;
isQuoteExpanded?: boolean;
}
@replaceableComponent("views.messages.MessageActionBar")