Skip to content

Commit

Permalink
fix: variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
amar-1995 committed Sep 13, 2024
1 parent 4f17372 commit b947aa4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const HMSVideo = forwardRef(({ children, ...props }, videoRef) => {
transition: 'all 0.3s ease-in-out',
'@md': {
'& video': {
height: props.fullscreen ? '' : '$60 !important',
height: props.isFullScreen ? '' : '$60 !important',
},
},
'& video::cue': {
Expand Down
2 changes: 1 addition & 1 deletion packages/roomkit-react/src/Prebuilt/layouts/HLSView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ const HLSView = () => {
onMouseMove={onHoverHandler}
onMouseLeave={onHoverHandler}
onClick={onClickHandler}
fullscreen={isFullScreen}
isFullScreen={isFullScreen}
onDoubleClick={e => {
onDoubleClickHandler(e);
}}
Expand Down

0 comments on commit b947aa4

Please sign in to comment.