diff --git a/CHANGELOG.md b/CHANGELOG.md index bb2e2b0ad..1b6e4c090 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed ### Changed - +- Updated `ContentShare` to have optional nameplate prop. ### Fixed - Fix a bug where the `isVideoEnabled` is still true even when the video device is unplugged. diff --git a/src/components/sdk/ContentShare/ContentShare.stories.mdx b/src/components/sdk/ContentShare/ContentShare.stories.mdx index 358ae621f..f17c6fed2 100644 --- a/src/components/sdk/ContentShare/ContentShare.stories.mdx +++ b/src/components/sdk/ContentShare/ContentShare.stories.mdx @@ -32,7 +32,7 @@ const App = () => { return ( - + ); diff --git a/src/components/sdk/ContentShare/index.tsx b/src/components/sdk/ContentShare/index.tsx index 02e27fd51..a0e1789d2 100644 --- a/src/components/sdk/ContentShare/index.tsx +++ b/src/components/sdk/ContentShare/index.tsx @@ -8,7 +8,9 @@ import { useContentShareState } from '../../../providers/ContentShareProvider'; import { ContentTile } from '../../ui/ContentTile'; import { BaseSdkProps } from '../Base'; -interface Props extends BaseSdkProps {} +interface Props extends BaseSdkProps { + nameplate?: string; +} export const ContentShare: React.FC = ({ className, ...rest }) => { const audioVideo = useAudioVideo();