diff options
author | Vitaly Takmazov | 2019-11-14 14:31:58 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:55 +0300 |
commit | 546a94714b993e5fea838ef7326ed962f7cbb3ef (patch) | |
tree | 4ba3ef120459cda12ce732f8041115b2068542cb /vnext/src/ui/Chat.js | |
parent | 29716ad88431ced68061bd7c210b8e09b31e7339 (diff) |
Fix Chat view
Diffstat (limited to 'vnext/src/ui/Chat.js')
-rw-r--r-- | vnext/src/ui/Chat.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/ui/Chat.js b/vnext/src/ui/Chat.js index 90c99c27..21f02635 100644 --- a/vnext/src/ui/Chat.js +++ b/vnext/src/ui/Chat.js @@ -65,7 +65,7 @@ export default function Chat(props) { const uname = params.user; return ( <div className="msg-cont"> - <UserInfo user={uname} /> + <UserInfo uname={uname} /> {uname ? ( <div className="chatroom"> <ul className="Chat_messages"> |