fix video player commands font issue #40

Merged
lamacchinadesiderante merged 1 commits from bugfix/player-font-not-loading-in-prod-mode into main 2024-04-25 23:04:44 +00:00
2 changed files with 1 additions and 7 deletions

View File

@ -41,7 +41,7 @@ export const VideoJS = (props: { options: any; onReady: any; }) => {
//@ts-ignore //@ts-ignore
player.src(options.sources); player.src(options.sources);
} }
}, [options, videoRef]); }, [options, videoRef, onReady]);
// Dispose the Video.js player when the functional component unmounts // Dispose the Video.js player when the functional component unmounts
React.useEffect(() => { React.useEffect(() => {

View File

@ -25,9 +25,3 @@ h1 {
font-size: $font-size-large; font-size: $font-size-large;
} }
} }
span,
p,
div {
font-family: 'Roboto,Arial' sans-serif !important;
}