Skip to content

Commit

Permalink
Merge branch 'main' into feat/unmirror-local-participant
Browse files Browse the repository at this point in the history
  • Loading branch information
myandrienko authored Oct 3, 2024
2 parents 5daae04 + 0b4c9b8 commit fa1f368
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sample-apps/react/react-dogfood/components/ActiveCall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ type SidebarContent =

export const ActiveCall = (props: ActiveCallProps) => {
const { chatClient, activeCall, onLeave, onJoin } = props;
const { useParticipantCount, useCallCallingState } = useCallStateHooks();
const { useParticipantCount } = useCallStateHooks();
const participantCount = useParticipantCount();
const {
current: currentTourStep,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const InvitePanel = () => {
<div className="rd__invite__qr">
<h2 className="rd__invite__qr-header">Test on mobile</h2>
<p className="rd__invite__qr-description">
To test on a mobile device, can the QR Code below:
To test on a mobile device, scan the QR Code below:
</p>
<div
className="rd__invite__qr-container"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
useCall,
useCallStateHooks,
} from '@stream-io/video-react-sdk';
import { useEffect, useRef, useState } from 'react';
import { useEffect, useRef } from 'react';

import hotkeys from 'hotkeys-js';

Expand Down

0 comments on commit fa1f368

Please sign in to comment.