diff options
author | Vitaly Takmazov | 2019-04-08 20:53:45 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:54 +0300 |
commit | 1a9fb01bcf64a4016fc8167f51871df1a85b692d (patch) | |
tree | c8d202ce2722a62208dc3e6e1a10ca9f0d3ded9a /vnext/src/components/Post.js | |
parent | e46fe57e15cda3869b07c624bbc138c441055a9a (diff) |
Cleanup ESLint warnings
Diffstat (limited to 'vnext/src/components/Post.js')
-rw-r--r-- | vnext/src/components/Post.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/Post.js b/vnext/src/components/Post.js index 7958c36d..3dc23613 100644 --- a/vnext/src/components/Post.js +++ b/vnext/src/components/Post.js @@ -20,7 +20,7 @@ function PostComponent(props) { this.props.history.push(`/${this.props.visitor.uname}/${msg.mid}`); } }).catch(console.log); - } + }; return ( <div className="msg-cont"> <MessageInput rows="7" text={params.body || ''} data={{ mid: 0, timestamp: '0' }} onSend={postMessage}> |