From 0f61f7556a43e60dc9ec66ac85ddb2a1a15bac86 Mon Sep 17 00:00:00 2001 From: J Taylor Date: Tue, 5 Oct 2021 11:44:27 +0300 Subject: [PATCH] fixed live-streaming symlink and README link to ParticipantsProvider --- custom/basic-call/README.md | 2 +- custom/live-streaming/pages/_document.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 custom/live-streaming/pages/_document.js 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;