Spaces:
Sleeping
Sleeping
Jon Taylor
commited on
Commit
·
c921185
1
Parent(s):
b22027f
removed export
Browse files
frontend/app/components/Joining.js
CHANGED
@@ -7,7 +7,7 @@ export default function Join({ roomUrl, onJoin }) {
|
|
7 |
const daily = useDaily();
|
8 |
|
9 |
useEffect(() => {
|
10 |
-
daily.join({ url: roomUrl });
|
11 |
|
12 |
onJoin();
|
13 |
});
|
|
|
7 |
const daily = useDaily();
|
8 |
|
9 |
useEffect(() => {
|
10 |
+
daily.join({ url: roomUrl, startAudioOff: true, audioSource: false });
|
11 |
|
12 |
onJoin();
|
13 |
});
|
frontend/next.config.js
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
/** @type {import('next').NextConfig} */
|
2 |
const nextConfig = {
|
3 |
-
|
4 |
-
reactProductionProfiling: false,
|
5 |
};
|
6 |
|
7 |
module.exports = nextConfig;
|
|
|
1 |
/** @type {import('next').NextConfig} */
|
2 |
const nextConfig = {
|
3 |
+
reactStrictMode: false,
|
|
|
4 |
};
|
5 |
|
6 |
module.exports = nextConfig;
|