Merge pull request #703 from robintown/fix-key-warning

Fix a warning about missing keys
This commit is contained in:
Robin 2022-11-02 12:36:28 -04:00 committed by GitHub
commit f93c022c27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}