Fix focusing in freedom layout

This commit is contained in:
Robert Long 2022-02-14 11:14:09 -08:00
parent fc057bf988
commit 681c24a0ca

View file

@ -87,7 +87,7 @@ export function InCallView({
if (layout === "freedom") { if (layout === "freedom") {
return tiles.map((tile) => { return tiles.map((tile) => {
if (tile === focusedTile) { if (tile === focusedTile) {
return { ...tile, presenter: !tile.presenter }; return { ...tile, focused: !tile.focused };
} }
return tile; return tile;