Merge pull request 'fix video player commands font issue' (#40) from bugfix/player-font-not-loading-in-prod-mode into main

Reviewed-on: #40
This commit is contained in:
lamacchinadesiderante 2024-04-25 23:04:44 +00:00
commit 2d35778966
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
player.src(options.sources);
}
}, [options, videoRef]);
}, [options, videoRef, onReady]);
// Dispose the Video.js player when the functional component unmounts
React.useEffect(() => {

View File

@ -24,10 +24,4 @@ h1 {
@media only screen and (max-width: $tablet) {
font-size: $font-size-large;
}
}
span,
p,
div {
font-family: 'Roboto,Arial' sans-serif !important;
}