Remove comments option from updates (#177)

This commit is contained in:
Daniel Ternyak 2019-02-08 10:18:58 -06:00 committed by William O'Beirne
parent 92bbbfe506
commit d11fa489d5
2 changed files with 0 additions and 4 deletions

View File

@ -82,9 +82,6 @@ class ProposalUpdates extends React.Component<Props, State> {
</div>
<div className="ProposalUpdates-update-controls">
<a className="ProposalUpdates-update-controls-button">Read more</a>
<a className="ProposalUpdates-update-controls-button">
{update.totalComments} comments
</a>
</div>
</div>
));

View File

@ -3,5 +3,4 @@ export interface Update {
title: string;
content: string;
dateCreated: number;
totalComments: number;
}