Refactor canvas element references to use "work-space-three-d-canvas"; update tooltip keyboard shortcut; clean up unused imports and comments; enhance keyboard shortcut handling for module switching and tool selection.

This commit is contained in:
Nalvazhuthi
2025-05-08 15:18:33 +05:30
16 changed files with 191 additions and 279 deletions

View File

@@ -102,7 +102,7 @@ const Project: React.FC = () => {
)}
<div
className="scene-container"
id="real-time-vis-canvas"
id="work-space-three-d-canvas"
style={{
height: isPlaying || activeModule !== "visualization" ? "100vh" : "",
width: isPlaying || activeModule !== "visualization" ? "100vw" : "",
@@ -130,7 +130,7 @@ const Project: React.FC = () => {
<LogList />
</RenderOverlay>
)}
{activeModule != "market" && <Footer />}
{activeModule !== "market" && !selectedUser && <Footer />}
</div>
);
};