Skip to content

Commit

Permalink
Fix style for matrix pane
Browse files Browse the repository at this point in the history
With "visibility=hidden" polls and timers are hidden behind invisible
matrix pane.
Use "display=none" to hide the matrix pane instead.
  • Loading branch information
rppt committed Nov 6, 2023
1 parent 1ea2af3 commit eea2976
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const Matrix = ({
<Styled.Matrix
data-test="matrix"
isChrome={isChrome}
style={{ visibility: isVisible ? 'visible' : 'hidden', }}
style={ isVisible ? {} : {display: 'none'}}
>
<Header
leftButtonProps={{
Expand Down

0 comments on commit eea2976

Please sign in to comment.