1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Fix ident

This commit is contained in:
Dariusz Niemczyk
2021-08-03 14:03:35 +02:00
parent 838d9105c9
commit a0b0a91d08
4 changed files with 174 additions and 174 deletions

View File

@@ -102,7 +102,7 @@ export const CallViewHeader: React.FC<CallViewHeaderProps> = ({
callRooms = [],
app,
onPipMouseDown,
}) {
}) => {
const [callRoom, onHoldCallRoom] = callRooms;
const callTypeText = callTypeTranslationByType[type](app);
const avatar = getAvatarBasedOnRoomType(callRoom ?? app);
@@ -132,4 +132,4 @@ export const CallViewHeader: React.FC<CallViewHeaderProps> = ({
<CallControls roomId={roomId} pipMode={pipMode} type={type} />
</div>
);
}
};