aboutsummaryrefslogtreecommitdiff
path: root/vnext
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-06-20 17:29:32 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:53 +0300
commit7b763f412e358eb75ade1d0a7d466fe8d367f76d (patch)
treedf69064c0f76a5e499c2e15204662515f4fb602f /vnext
parent466aa625567db617149479b7b8f446d5537d320c (diff)
hide tracking pixel
Diffstat (limited to 'vnext')
-rw-r--r--vnext/src/components/Thread.js2
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>