refactor: improve code readability and maintainability in MainScene, Messages, and ThreadChat components; adjust comments.scss for better layout

This commit is contained in:
Nalvazhuthi
2025-08-25 15:56:30 +05:30
parent d0ab679f3b
commit 5b7e8b893c
4 changed files with 38 additions and 19 deletions

View File

@@ -212,7 +212,11 @@ function MainScene() {
{activeModule !== "market" && !selectedUser && <Footer />}
<VersionSaved />
{(commentPositionState !== null || selectedComment !== null) && <ThreadChat />}
{
(commentPositionState !== null || selectedComment !== null) &&
<ThreadChat />
}
</>
);