Fix a mistake

This commit is contained in:
dan
2022-09-17 20:47:41 +01:00
committed by GitHub
parent d83e0aa59c
commit a6c164d66a

View File

@@ -517,7 +517,7 @@ export default function App() {
{show ? 'Close chat' : 'Open chat'}
</button>
{show && <hr />}
{show && <ChatRoom roomId={roomId} />}
{show && <ChatRoom />}
</>
);
}