We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a070dc2 commit 46fa4c3Copy full SHA for 46fa4c3
packages/mux-player-react/src/index.tsx
@@ -270,7 +270,6 @@ const MuxPlayer = React.forwardRef<
270
const innerPlayerRef = useRef<MuxPlayerElement>(null);
271
const playerRef = useCombinedRefs(innerPlayerRef, ref);
272
const [remainingProps] = usePlayer(innerPlayerRef, props);
273
- const [playerInitTime] = useState(props.playerInitTime ?? generatePlayerInitTime());
274
275
return (
276
<MuxPlayerInternal
@@ -279,7 +278,6 @@ const MuxPlayer = React.forwardRef<
279
278
defaultHiddenCaptions={props.defaultHiddenCaptions}
280
playerSoftwareName={playerSoftwareName}
281
playerSoftwareVersion={playerSoftwareVersion}
282
- playerInitTime={playerInitTime}
283
{...remainingProps}
284
/>
285
);
0 commit comments