We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10aee49 commit 882c06cCopy full SHA for 882c06c
peerprep-fe/src/app/collaboration/components/AudioSharing.tsx
@@ -26,7 +26,9 @@ const AudioSharing = () => {
26
const TURN_CREDENTIAL = process.env.NEXT_PUBLIC_TURN_PASSWORD;
27
28
if (!TURN_SERVER || !TURN_USERNAME || !TURN_CREDENTIAL) {
29
- console.error('Missing TURN environment variables');
+ console.error(TURN_SERVER);
30
+ console.error(TURN_USERNAME);
31
+ console.error(TURN_CREDENTIAL);
32
}
33
34
const cleanupAudio = () => {
0 commit comments