From c09e648f6ff09042dd3066919e7c703cd894d56d Mon Sep 17 00:00:00 2001 From: Matvei Andrienko Date: Tue, 20 Aug 2024 15:14:56 +0200 Subject: [PATCH] chore: add a note about credentials to sample video calling app (#1464) The sample app code used to have confusing comment from the time when credentials were provided in a separate widget in our tutorials. Now we just point to the tutorial which has demo crendentials. --- .../react/stream-video-react-tutorial/src/App.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sample-apps/react/stream-video-react-tutorial/src/App.tsx b/sample-apps/react/stream-video-react-tutorial/src/App.tsx index 626a8eb8f9..d401a48f8c 100644 --- a/sample-apps/react/stream-video-react-tutorial/src/App.tsx +++ b/sample-apps/react/stream-video-react-tutorial/src/App.tsx @@ -15,10 +15,12 @@ import { import '@stream-io/video-react-sdk/dist/css/styles.css'; import './style.css'; -const apiKey = 'REPLACE_WITH_API_KEY'; // the API key can be found in the "Credentials" section -const token = 'REPLACE_WITH_TOKEN'; // the token can be found in the "Credentials" section -const userId = 'REPLACE_WITH_USER_ID'; // the user id can be found in the "Credentials" section -const callId = 'REPLACE_WITH_CALL_ID'; // the call id can be found in the "Credentials" section +// For demo credentials, check out our video calling tutorial: +// https://getstream.io/video/sdk/react/tutorial/video-calling/ +const apiKey = 'REPLACE_WITH_API_KEY'; +const token = 'REPLACE_WITH_TOKEN'; +const userId = 'REPLACE_WITH_USER_ID'; +const callId = 'REPLACE_WITH_CALL_ID'; const user: User = { id: userId,