Fix a warning about missing keys
This commit is contained in:
parent
7b71e9b20f
commit
8731f83fb5
1 changed files with 2 additions and 0 deletions
|
@ -75,6 +75,7 @@ export const VideoTile = forwardRef<HTMLDivElement, Props>(
|
|||
if (!isLocal) {
|
||||
toolbarButtons.push(
|
||||
<AudioButton
|
||||
key="localVolume"
|
||||
className={styles.button}
|
||||
volume={localVolume}
|
||||
onPress={onOptionsPress}
|
||||
|
@ -84,6 +85,7 @@ export const VideoTile = forwardRef<HTMLDivElement, Props>(
|
|||
if (screenshare) {
|
||||
toolbarButtons.push(
|
||||
<FullscreenButton
|
||||
key="fullscreen"
|
||||
className={styles.button}
|
||||
fullscreen={fullscreen}
|
||||
onPress={onFullscreen}
|
||||
|
|
Loading…
Reference in a new issue