You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the <VideoPlayer> component, type VideoPlayerProps is being imported as any instead of extending MuxPlayerProps. I was able to temporarily fix this by editing the index.d.ts file and changing:
import { type MuxPlayerProps } from '@mux/mux-player-react/.';
to
import { type MuxPlayerProps } from '@mux/mux-player-react';
It looks like there is an incorrect trailing /. that is breaking the import.
The text was updated successfully, but these errors were encountered:
When using the
<VideoPlayer>
component, typeVideoPlayerProps
is being imported asany
instead of extendingMuxPlayerProps
. I was able to temporarily fix this by editing theindex.d.ts
file and changing:to
It looks like there is an incorrect trailing
/.
that is breaking the import.The text was updated successfully, but these errors were encountered: