Skip to content

Commit

Permalink
fix(WebexLocalMedia): turn off avatar status display
Browse files Browse the repository at this point in the history
  • Loading branch information
akoushke committed Jan 30, 2020
1 parent 29fa544 commit 8f8242c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/WebexLocalMedia/WebexLocalMedia.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function WebexLocalMedia({meetingID}) {
const {localVideo} = useMeeting(meetingID);
const {ID} = useMe();
const videoRef = useStream(localVideo);
const disabledVideo = ID ? <WebexAvatar personID={ID} /> : <Spinner />;
const disabledVideo = ID ? <WebexAvatar personID={ID} displayStatus={false} /> : <Spinner />;

return (
<div className="local-media">{localVideo ? <video ref={videoRef} playsInline autoPlay /> : disabledVideo}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ exports[`Webex Local Media component snapshot matches snapshot of disabled local
className="local-media"
>
<WebexAvatar
displayStatus={false}
personID="default"
/>
</div>
Expand Down

0 comments on commit 8f8242c

Please sign in to comment.