feat(native-participants-pane) fixed lint error

This commit is contained in:
Calin Chitu 2021-06-08 18:58:53 +03:00 committed by Hristo Terezov
parent 4b72fefd7e
commit e13473d42f
1 changed files with 3 additions and 2 deletions

View File

@ -30,7 +30,7 @@ type Props = {
/**
* Theme used for styles.
*/
theme?: Object
theme: Object
};
/**
@ -76,8 +76,9 @@ class VolumeSlider extends Component<Props, State> {
* @returns {ReactElement}
*/
render() {
const { theme } = this.props;
const { volumeLevel } = this.state;
const { palette } = this.props.theme;
const { palette } = theme;
return (
<View style = { styles.volumeSliderContainer }>