diff options
-rw-r--r-- | vnext/src/components/Thread.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/Thread.js b/vnext/src/components/Thread.js index 5b57fe0e..a1aaa837 100644 --- a/vnext/src/components/Thread.js +++ b/vnext/src/components/Thread.js @@ -102,7 +102,7 @@ export default class Thread extends React.Component { <div className="title2"> { this.props.visitor.uid > 0 && - <img src={`https://api.juick.com/thread/mark_read/${msg.mid}-${msg.rid || 0}.gif?hash=${this.props.visitor.hash}`} /> + <img style={{display: 'none'}} src={`https://api.juick.com/thread/mark_read/${msg.mid}-${msg.rid || 0}.gif?hash=${this.props.visitor.hash}`} /> } <h2>{msg.replies && `Replies (${msg.replies})`}</h2> </div> |