mirror of
https://github.com/vector-im/element-call.git
synced 2026-08-29 21:15:19 +00:00
Merge branch 'livekit' into robin/earpiece-overlay
This commit is contained in:
@@ -12,9 +12,7 @@ import { type MatrixClient } from "matrix-js-sdk";
|
||||
import {
|
||||
type FC,
|
||||
type PointerEvent,
|
||||
type PropsWithoutRef,
|
||||
type TouchEvent,
|
||||
forwardRef,
|
||||
useCallback,
|
||||
useEffect,
|
||||
useMemo,
|
||||
@@ -521,13 +519,14 @@ export const InCallView: FC<InCallViewProps> = ({
|
||||
|
||||
const Tile = useMemo(
|
||||
() =>
|
||||
forwardRef<
|
||||
HTMLDivElement,
|
||||
PropsWithoutRef<TileProps<TileViewModel, HTMLDivElement>>
|
||||
>(function Tile(
|
||||
{ className, style, targetWidth, targetHeight, model },
|
||||
function Tile({
|
||||
ref,
|
||||
) {
|
||||
className,
|
||||
style,
|
||||
targetWidth,
|
||||
targetHeight,
|
||||
model,
|
||||
}: TileProps<TileViewModel, HTMLDivElement>): ReactNode {
|
||||
const spotlightExpanded = useObservableEagerState(
|
||||
vm.spotlightExpanded$,
|
||||
);
|
||||
@@ -565,7 +564,7 @@ export const InCallView: FC<InCallViewProps> = ({
|
||||
style={style}
|
||||
/>
|
||||
);
|
||||
}),
|
||||
},
|
||||
[vm, openProfile],
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user