From 303c7489e415be35bb9371b45a8452cd1b4bdc12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bel=C3=A9n=20Curcio?= Date: Tue, 25 Sep 2018 11:29:07 -0300 Subject: [PATCH] Changes --- .../stream/tabs/profile/components/CommentsHistory.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/client/stream/tabs/profile/components/CommentsHistory.tsx b/src/core/client/stream/tabs/profile/components/CommentsHistory.tsx index cc8bae18e..dd6c8c0f4 100644 --- a/src/core/client/stream/tabs/profile/components/CommentsHistory.tsx +++ b/src/core/client/stream/tabs/profile/components/CommentsHistory.tsx @@ -18,14 +18,14 @@ interface Me { } interface CommentsHistoryProps { - goToConversation: () => void; + onGoToConversation: () => void; me: Me; } const CommentsHistory: StatelessComponent = props => { const comments = props.me.comments.edges.map(edge => edge.node); return ( - + Comment History @@ -33,7 +33,7 @@ const CommentsHistory: StatelessComponent = props => { ))}