+
+
{name === 'My Stream' ? 'My Stream' : 'Remote Stream'}
+ ${name === "My Stream" ? " mxs:w-[80px] mxs:h-[120px] msm:w-[100px] msm:rounded-md msm:h-[140px] mmd:w-[140px] md:w-[200px] lg:w-[280px]"
+ : "mxs:h-[450px] mss:h-[500px] mmd:h-[600px] md:w-[800px] md:h-[500px]"}`}
+ >
diff --git a/client/src/pages/room/[slug].jsx b/client/src/pages/room/[slug].jsx
index 8a015c9..9f5e9d4 100644
--- a/client/src/pages/room/[slug].jsx
+++ b/client/src/pages/room/[slug].jsx
@@ -1,6 +1,5 @@
import { useSocket } from '@/context/SocketProvider';
import React, { useCallback, useEffect, useState } from 'react'
-import ReactPlayer from 'react-player';
import peer from '@/service/peer';
import CallIcon from '@mui/icons-material/Call';
import VideoCallIcon from '@mui/icons-material/VideoCall';
@@ -198,16 +197,16 @@ const RoomPage = () => {
}, [myStream, remoteSocketId, socket]);
return (
-
-
Video
+
+
Video
Peers
-
- {remoteSocketId ? "Connected With Remote User!" : "No One In Room"}
-
+
+ {remoteSocketId ? "Connected With Remote User!" : "No One In Room"}
+
{(remoteStream && remoteSocketId && isSendButtonVisible) &&