diff --git a/custom/basic-call/README.md b/custom/basic-call/README.md index b8abd9a..648f221 100644 --- a/custom/basic-call/README.md +++ b/custom/basic-call/README.md @@ -47,7 +47,7 @@ Primary call context that manages Daily call state, participant state and call o **[useCallMachine.js](../shared/contexts/useCallMachine.js)** Abstraction hook that manages Daily call state and error handling -**[ParticipantProvider.js](../shared/contexts/ParticipantProvider.js)** +**[ParticipantsProvider.js](../shared/contexts/ParticipantsProvider.js)** Manages participant state and abstracts common selectors / derived data ## Deploy your own on Vercel diff --git a/custom/live-streaming/pages/_document.js b/custom/live-streaming/pages/_document.js new file mode 100644 index 0000000..31f6c1f --- /dev/null +++ b/custom/live-streaming/pages/_document.js @@ -0,0 +1,3 @@ +import Doc from '@custom/basic-call/pages/_document'; + +export default Doc;