Refactor keyboard shortcut handling and improve module switching logic

This commit is contained in:
2025-05-08 13:42:42 +05:30
parent 8bf48bfcfe
commit a2480748a8
9 changed files with 174 additions and 204 deletions

View File

@@ -130,7 +130,7 @@ const Project: React.FC = () => {
<LogList />
</RenderOverlay>
)}
{activeModule != "market" && <Footer />}
{activeModule !== "market" && !selectedUser && <Footer />}
</div>
);
};