Skip to content

Commit 03402ea

Browse files
committed
undo an oops
1 parent a5b1bb5 commit 03402ea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/tile/MediaView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { Avatar } from "../Avatar";
1919
import { type EncryptionStatus } from "../state/MediaViewModel";
2020
import { RaisedHandIndicator } from "../reactions/RaisedHandIndicator";
2121
import {
22-
showConnectionStats,
22+
showConnectionStats as showConnectionStatsSetting,
2323
showHandRaisedTimer,
2424
allowPipSetting,
2525
useSetting,
@@ -86,7 +86,7 @@ export const MediaView: FC<Props> = ({
8686
}) => {
8787
const { t } = useTranslation();
8888
const [handRaiseTimerVisible] = useSetting(showHandRaisedTimer);
89-
const [showConnectionStats] = useSetting(showConnectionStats);
89+
const [showConnectionStats] = useSetting(showConnectionStatsSetting);
9090
const [allowPip] = useSetting(allowPipSetting);
9191

9292
const avatarSize = Math.round(Math.min(targetWidth, targetHeight) / 2);

0 commit comments

Comments
 (0)