Skip to content

Commit

Permalink
Merge branch 'main' into docs/cc-react
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlaz authored Oct 4, 2024
2 parents 10d5cb8 + e9ba37c commit 933cdbd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions packages/react-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [1.6.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.6.0...@stream-io/video-react-sdk-1.6.1) (2024-10-04)


### Bug Fixes

* video should be enabled by default ([7340041](https://github.com/GetStream/stream-video-js/commit/73400414d472d39701fd31b54ac927a8a8865151))

## [1.6.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.5.0...@stream-io/video-react-sdk-1.6.0) (2024-10-03)


Expand Down
2 changes: 1 addition & 1 deletion packages/react-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stream-io/video-react-sdk",
"version": "1.6.0",
"version": "1.6.1",
"packageManager": "[email protected]",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
Expand Down
3 changes: 2 additions & 1 deletion packages/react-sdk/src/core/components/Video/Video.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export type VideoProps = ComponentPropsWithoutRef<'video'> & {
/**
* Pass false to disable rendering video and render fallback
* even if the participant has published video.
* @default true
*/
enabled?: boolean;
/**
Expand Down Expand Up @@ -64,7 +65,7 @@ export type VideoProps = ComponentPropsWithoutRef<'video'> & {
};

export const Video = ({
enabled,
enabled = true,
mirror,
trackType,
participant,
Expand Down

0 comments on commit 933cdbd

Please sign in to comment.