diff --git a/sample-apps/react/react-video-demo/data/tour.ts b/sample-apps/react/react-video-demo/data/tour.ts index 72567f3fa9..d96c8d3205 100644 --- a/sample-apps/react/react-video-demo/data/tour.ts +++ b/sample-apps/react/react-video-demo/data/tour.ts @@ -16,6 +16,7 @@ export const tour = [ }, { header: 'Try It On Your Phone', - explanation: 'Invite a friend by sending them this URL.', + explanation: + 'Scan the QR code or invite a friend by sending them this URL.', }, ]; diff --git a/sample-apps/react/react-video-demo/src/main.tsx b/sample-apps/react/react-video-demo/src/main.tsx index 9c73545d2b..fd9cf6a21a 100644 --- a/sample-apps/react/react-video-demo/src/main.tsx +++ b/sample-apps/react/react-video-demo/src/main.tsx @@ -3,6 +3,8 @@ import App from './App'; import * as Sentry from '@sentry/react'; +import Gleap from 'gleap'; + import './index.css'; import TagManager from 'react-gtm-module'; @@ -34,6 +36,10 @@ if ( }); } +if (import.meta.env.MODE === 'staging') { + Gleap.initialize(import.meta.env.VITE_GLEAP_KEY); +} + ReactDOM.createRoot( document.getElementById('video-demo') as HTMLElement, ).render();