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>
{state.selectedMenu === "chat" && (
<section aria-label="Chat Section" className="chat-section">
<section aria-label="Chat Section">
<ChatMessages sendMessage={sendMessage} />
<ChatInput sendMessage={sendMessage} />
</section>
)}
{state.selectedMenu === "participants" && (
<section
aria-label="Participants list"
className="participants-section"
>
<section aria-label="Participants list">
<ParticipantList />
</section>
)}