|
|
|
@ -1,7 +1,7 @@ |
|
|
|
|
/* eslint-disable lines-around-comment */ |
|
|
|
|
|
|
|
|
|
import React from 'react'; |
|
|
|
|
import { StyleProp, Text, TouchableOpacity, View, ViewStyle } from 'react-native'; |
|
|
|
|
import { StyleProp, Text, View, ViewStyle } from 'react-native'; |
|
|
|
|
import { connect, useSelector } from 'react-redux'; |
|
|
|
|
|
|
|
|
|
import { IReduxState } from '../../../../app/types'; |
|
|
|
@ -47,8 +47,7 @@ const TitleBar = (props: IProps): JSX.Element => { |
|
|
|
|
const localParticipantId = localParticipant?.id; |
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
|
<TouchableOpacity |
|
|
|
|
activeOpacity = { 1 } |
|
|
|
|
<View |
|
|
|
|
style = { styles.titleBarWrapper as StyleProp<ViewStyle> }> |
|
|
|
|
<View |
|
|
|
|
pointerEvents = 'box-none' |
|
|
|
@ -76,7 +75,7 @@ const TitleBar = (props: IProps): JSX.Element => { |
|
|
|
|
</View> |
|
|
|
|
} |
|
|
|
|
</View> |
|
|
|
|
</TouchableOpacity> |
|
|
|
|
</View> |
|
|
|
|
); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|