This commit is contained in:
Josh Hawkins
2026-09-24 13:27:29 -05:00
parent f50a785e6a
commit 2f5c2af8fa
3 changed files with 2 additions and 7 deletions
@@ -60,8 +60,6 @@ export default function BirdseyeLivePlayer({
<div
ref={containerRef}
className={cn(
// matches LivePlayer: the card owns the corner and clips everything
// inside it, so the stream and the overlays stay concentric with it
"relative flex w-full cursor-pointer justify-center overflow-hidden rounded-lg md:rounded-2xl",
className,
)}
-3
View File
@@ -54,9 +54,6 @@ type LivePlayerProps = {
onError?: (error: LivePlayerError) => void;
onMicrophoneError?: (error: TwoWayTalkError) => void;
onResetLiveMode?: () => void;
// Aspect of the source currently on screen: the live stream's while it is
// playing, undefined while the still image is showing. The still comes from
// the detect stream, which can be shaped differently than the live one.
onLiveAspectChange?: (aspectRatio: number | undefined) => void;
};