Skip to content

Commit 9cbf871

Browse files
author
Germain Souquet
committed
Add comments for missing types in MessageActionBar
1 parent 01d6178 commit 9cbf871

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/views/messages/MessageActionBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const OptionsButton: React.FC<IOptionsButtonProps> =
9090

9191
interface IReactButtonProps {
9292
mxEvent: MatrixEvent;
93-
reactions: any;
93+
reactions: any; // TODO: types
9494
onFocusChange: (menuDisplayed: boolean) => void;
9595
}
9696

@@ -128,7 +128,7 @@ const ReactButton: React.FC<IReactButtonProps> = ({ mxEvent, reactions, onFocusC
128128
interface IMessageActionBarProps {
129129
mxEvent: MatrixEvent;
130130
// The Relations model from the JS SDK for reactions to `mxEvent`
131-
reactions?: any;
131+
reactions?: any; // TODO: types
132132
permalinkCreator?: RoomPermalinkCreator;
133133
getTile: () => any; // TODO: FIXME, haven't figured out what the return type is here
134134
getReplyThread?: () => ReplyThread;

0 commit comments

Comments
 (0)