Dispose call when closing

This commit is contained in:
IceDBorn 2023-03-22 00:58:08 +02:00
parent 5f17e4153b
commit 6962ec819a
2 changed files with 1 additions and 6 deletions

View file

@ -146,9 +146,8 @@ function JitsiRoom(props) {
/> />
</div> </div>
); );
} else {
return <div className="hiddenJitsiCall" />;
} }
return null;
} }
export default JitsiRoom; export default JitsiRoom;

View file

@ -17,7 +17,3 @@
display: none; display: none;
} }
} }
.hiddenJitsiCall {
display:none !important;
}