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
I was using ReactWordCloud in my project where use case was, on some state change, I want to hide a page which also contains my ReactWordCloud, and to hide it I am using display: none property of css but when I am changing it back to display: block my screen is getting stuck.
To clear out any doubts of my code, I tried it in the codeSandbox which I mentioned above, but it is showing the same behaviour.
I know the workaround it, but it took me a while to find out that what was causing the actual issue in my screen. So it would be great if this could be fixed.
The text was updated successfully, but these errors were encountered:
https://codesandbox.io/p/sandbox/react-wordcloud-responsive-forked-hvhqsy
`function App() {
const [hide, setHide] = React.useState(false);
return (
<div onClick={() => setHide(!hide)}>Buttion
);
}`
I was using ReactWordCloud in my project where use case was, on some state change, I want to hide a page which also contains my ReactWordCloud, and to hide it I am using
display: none
property of css but when I am changing it back todisplay: block
my screen is getting stuck.To clear out any doubts of my code, I tried it in the codeSandbox which I mentioned above, but it is showing the same behaviour.
I know the workaround it, but it took me a while to find out that what was causing the actual issue in my screen. So it would be great if this could be fixed.
The text was updated successfully, but these errors were encountered: