You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -32,11 +33,11 @@ export default function JoinRoom() {
32
33
console.error("Media access denied:",err);
33
34
34
35
if(err.name==="NotAllowedError"){
35
-
alert(
36
+
toast.error(
36
37
"You blocked the camera/mic.\n\nPlease enable permissions:\n1. Click lock icon in URL bar\n2. Open Site Settings\n3. Set Camera & Microphone to Allow\n4. Reload the page"
37
38
);
38
39
}else{
39
-
alert("Unable to access camera/mic: "+err.message);
40
+
toast.error("Unable to access camera/mic: "+err.message);
40
41
}
41
42
}
42
43
};
@@ -63,15 +64,17 @@ export default function JoinRoom() {
63
64
}
64
65
);
65
66
66
-
alert("Joined room successfully!");
67
+
toast.success("Joined room successfully!");
68
+
// Optional: Stop preview stream before entering actual call
0 commit comments