fix: remove redundant className
This commit is contained in:
parent
1d0b5ca55e
commit
7913ad17c8
1 changed files with 2 additions and 5 deletions
|
|
@ -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>
|
||||
)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue