Restructure HelpModal with lobby workflow and improve content organization

Reorganized help sections to match game flow: lobby/start, game selection, status marking, notes/chips, game end, and user menu. Updated section titles and descriptions for clarity, added lobby mechanics explanation with host controls and chip generation, and included game completion details with read-only enforcement. Removed source file comment, simplified badge styling with inline styles, and refined text for better readability. Moved privacy tip to end and adjusted section numb
This commit is contained in:
2026-08-02 10:08:07 +02:00
parent f24489b1e5
commit 630a816df0
2 changed files with 94 additions and 100 deletions
+3 -1
View File
@@ -698,7 +698,9 @@ export default function App() {
onOpenNewGame={() => setNewGameOpen(true)}
/>
<AdminPanel open={me.role === "admin" && adminOpen} onClose={() => setAdminOpen(false)} />
{me.role === "admin" && (
<AdminPanel open={adminOpen} onClose={() => setAdminOpen(false)} />
)}
<GamePickerCard
games={games}