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 => { ))}