Fix action propagation to timeline items
This commit is contained in:
parent
9ffa29ca0d
commit
5a57e2b704
14 changed files with 71 additions and 66 deletions
|
@ -243,6 +243,7 @@ const mapStateToProps = (state: StateType, props: ExternalProps) => {
|
|||
const { id, ...actions } = props;
|
||||
|
||||
const conversation = getConversationSelector(state)(id);
|
||||
|
||||
const conversationMessages = getConversationMessagesSelector(state)(id);
|
||||
const selectedMessage = getSelectedMessage(state);
|
||||
|
||||
|
@ -279,5 +280,4 @@ const mapStateToProps = (state: StateType, props: ExternalProps) => {
|
|||
|
||||
const smart = connect(mapStateToProps, mapDispatchToProps);
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
export const SmartTimeline = smart(Timeline as any);
|
||||
export const SmartTimeline = smart(Timeline);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue