From d11fa489d5bf1eab7934571d8cd81b105e7076d4 Mon Sep 17 00:00:00 2001 From: Daniel Ternyak Date: Fri, 8 Feb 2019 10:18:58 -0600 Subject: [PATCH] Remove comments option from updates (#177) --- frontend/client/components/Proposal/Updates/index.tsx | 3 --- frontend/types/update.ts | 1 - 2 files changed, 4 deletions(-) diff --git a/frontend/client/components/Proposal/Updates/index.tsx b/frontend/client/components/Proposal/Updates/index.tsx index 072d0460..a1ea6411 100644 --- a/frontend/client/components/Proposal/Updates/index.tsx +++ b/frontend/client/components/Proposal/Updates/index.tsx @@ -82,9 +82,6 @@ class ProposalUpdates extends React.Component {
Read more - - {update.totalComments} comments -
)); diff --git a/frontend/types/update.ts b/frontend/types/update.ts index 2d286f7a..b58f7c8e 100644 --- a/frontend/types/update.ts +++ b/frontend/types/update.ts @@ -3,5 +3,4 @@ export interface Update { title: string; content: string; dateCreated: number; - totalComments: number; }