|
@@ -221,7 +221,13 @@ function _mapStateToProps(state: IReduxState, ownProps: any) {
|
221
|
221
|
propsUpdateFunction: (tabState: any, newProps: ReturnType<typeof getNotificationsTabProps>) => {
|
222
|
222
|
return {
|
223
|
223
|
...newProps,
|
224
|
|
- enabledNotifications: tabState?.enabledNotifications || {}
|
|
224
|
+ enabledNotifications: tabState?.enabledNotifications || {},
|
|
225
|
+ soundsIncomingMessage: tabState?.soundsIncomingMessage,
|
|
226
|
+ soundsParticipantJoined: tabState?.soundsParticipantJoined,
|
|
227
|
+ soundsParticipantKnocking: tabState?.soundsParticipantKnocking,
|
|
228
|
+ soundsParticipantLeft: tabState?.soundsParticipantLeft,
|
|
229
|
+ soundsReactions: tabState?.soundsReactions,
|
|
230
|
+ soundsTalkWhileMuted: tabState?.soundsTalkWhileMuted
|
225
|
231
|
};
|
226
|
232
|
},
|
227
|
233
|
props: getNotificationsTabProps(state, showSoundsSettings),
|