Skip to content

Commit

Permalink
fix(screenshare): fullscreen status from state
Browse files Browse the repository at this point in the history
isFullscreen is a state property and is being fetched from the component
props. I think this is something I messed up while resolving a cherry-pick
conflict.
  • Loading branch information
pedrobmarin committed Jul 12, 2021
1 parent 3cd144e commit e6c43f2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,11 @@ class ScreenshareComponent extends React.Component {
}

renderScreenshareDefault() {
const { intl } = this.props;
const {
intl,
isFullscreen,
} = this.props;
const { loaded } = this.state;
loaded,
} = this.state;

return (
<div
Expand Down

0 comments on commit e6c43f2

Please sign in to comment.