We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad47495 commit b318307Copy full SHA for b318307
frontend/src/presentation/pages/CollaborationRoomPage.tsx
@@ -80,7 +80,7 @@ const CollaborationRoomPage: React.FC = () => {
80
<ToggleButton showChat={showChat} onClick={() => setShowChat(!showChat)} />
81
<div className={styles.contentArea}>
82
<div className={`${styles.questionDetail} ${showChat ? styles.hidden : ""}`}>
83
- <QuestionDetail question={initialQuestions[0]} />
+ <QuestionDetail question={question} />
84
</div>
85
<div className={`${styles.chatFrame} ${showChat ? styles.visible : styles.hidden}`}>
86
<ChatFrame roomId={roomId} />
0 commit comments