aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/App.js')
-rw-r--r--vnext/src/App.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js
index f3f48152..aa159f14 100644
--- a/vnext/src/App.js
+++ b/vnext/src/App.js
@@ -215,10 +215,10 @@ export default class App extends React.Component {
<li>Comments: {user.statsReplies}</li>
</ul>
{
- user.iread &&
+ user.read &&
<div className="iread">
{
- user.iread.map(u => <Avatar user={u} key={u.uid} />)
+ user.read.map(u => <Avatar user={u} key={u.uid} />)
}
</div>
}