fix: remove redundant className

This commit is contained in:
Alexander Daichendt 2025-02-14 11:27:58 +01:00
parent 1d0b5ca55e
commit 7913ad17c8

View file

@ -35,16 +35,13 @@ function Room() {
</nav> </nav>
{state.selectedMenu === "chat" && ( {state.selectedMenu === "chat" && (
<section aria-label="Chat Section" className="chat-section"> <section aria-label="Chat Section">
<ChatMessages sendMessage={sendMessage} /> <ChatMessages sendMessage={sendMessage} />
<ChatInput sendMessage={sendMessage} /> <ChatInput sendMessage={sendMessage} />
</section> </section>
)} )}
{state.selectedMenu === "participants" && ( {state.selectedMenu === "participants" && (
<section <section aria-label="Participants list">
aria-label="Participants list"
className="participants-section"
>
<ParticipantList /> <ParticipantList />
</section> </section>
)} )}