Redesign complete. Not much UI changes

This commit is contained in:
AG
2025-10-11 19:10:58 +03:00
parent 9bbd690f40
commit f42bac001d
20 changed files with 425 additions and 64 deletions

View File

@@ -45,7 +45,7 @@ const SessionPage = () => {
{wsError && <Alert severity="error" sx={{ mb: 2 }}>{wsError}</Alert>}
<Typography variant="h4" component="h1" gutterBottom>
Session: {session.topic || session.sessionId}
{session.topic || session.sessionId}
</Typography>
{session.state === SessionState.SETUP && (
@@ -88,15 +88,11 @@ const SessionPage = () => {
</Box>
)}
{/* Session status is hidden as per FR-008 */}
{session.state !== SessionState.SETUP && (
<>
<Typography variant="h6" gutterBottom>
Expected Responses: {session.expectedResponses}
</Typography>
<Typography variant="body1" gutterBottom>
Status: {session.state}
</Typography>
</>
<Typography variant="h6" gutterBottom>
Expected Responses: {session.expectedResponses}
</Typography>
)}
{session.state === SessionState.GATHERING && !hasSubmittedCurrentParticipant && (