Skip to content

Commit

Permalink
test(mediaAspect): log to debug on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
evandrododo committed Dec 10, 2023
1 parent 9be3922 commit 1b192ff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/WebCamVideoPlane/WebCamVideoPlane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,8 @@ export const WebCamVideoPlane = () => {
if (!userMedia || !userMedia.getVideoTracks().length) {
return null;
}
return <>{renderizado && <VideoPlane userMedia={userMedia} />};</>;
return <>
{renderizado}
<VideoPlane userMedia={userMedia} />
</>;
};

0 comments on commit 1b192ff

Please sign in to comment.