+ {(!!startPreview || joinChannelSuccess) && renderLocalCamera ? (
+
+ {`${'local-cam'} - ${
+ VideoSourceType.VideoSourceCamera
+ }`}
+
+
+ ) : undefined}
+ {(remoteUsers.slice(0, remoteRenderLimit) ?? [])
+ .filter((uid) => {
+ return uid != leftViewUid;
+ })
+ .map((uid, index) => {
+ return (
+
+ {`${'remote-cam'} - ${
+ VideoSourceType.VideoSourceRemote
+ }`}
+
+
+ );
+ })}
+