diff --git a/custom/fitness-demo/components/Call/InviteOthers.js b/custom/fitness-demo/components/Call/InviteOthers.js index 336778f..8cda2b0 100644 --- a/custom/fitness-demo/components/Call/InviteOthers.js +++ b/custom/fitness-demo/components/Call/InviteOthers.js @@ -64,12 +64,12 @@ export const InviteOthers = () => { width: 186px; } - :global(.card) { + :global(.invite-others .card) { border: 0!important; width: 40vw; } - :global(.card input) { + :global(.invite-others .card input) { width: 15vw; } `} diff --git a/custom/fitness-demo/pages/api/createRoom.js b/custom/fitness-demo/pages/api/createRoom.js index 4676cd4..beff1aa 100644 --- a/custom/fitness-demo/pages/api/createRoom.js +++ b/custom/fitness-demo/pages/api/createRoom.js @@ -18,7 +18,7 @@ export default async function handler(req, res) { eject_at_room_exp: true, enable_knocking: privacy !== 'public', enable_screenshare: true, - enable_recording: true, + enable_recording: 'local', ...rest, }, }), diff --git a/custom/fitness-demo/pages/index.js b/custom/fitness-demo/pages/index.js index e2ba508..7591688 100644 --- a/custom/fitness-demo/pages/index.js +++ b/custom/fitness-demo/pages/index.js @@ -93,7 +93,7 @@ export default function Index({ return; } - setError(resJson?.error || 'An unknown error occured'); + setError(resJson?.info || resJson?.error || 'An unknown error occured'); } else { if (verifyingResJson.name) { const editRes = await fetch(`/api/editRoom?roomName=${room}`, {