diff --git a/apps/comments-ui/src/components/CommentsBox.js b/apps/comments-ui/src/components/CommentsBox.js index 647b00a20f..3cf9218d66 100644 --- a/apps/comments-ui/src/components/CommentsBox.js +++ b/apps/comments-ui/src/components/CommentsBox.js @@ -26,7 +26,7 @@ const CommentsBoxContent = (props) => {

{title ? title : <>Member discussion}

- {count ?
{commentsCount} comments
: null} + {count ?
{commentsCount} comments
: null}
diff --git a/apps/comments-ui/src/components/NotPaidBox.js b/apps/comments-ui/src/components/NotPaidBox.js index 692229e3c1..0c4f62bd66 100644 --- a/apps/comments-ui/src/components/NotPaidBox.js +++ b/apps/comments-ui/src/components/NotPaidBox.js @@ -8,19 +8,19 @@ const NotPaidBox = (props) => { backgroundColor: accentColor }; - const titleText = (props.isFirst ? 'Want to be the first to comment?' : 'Want to join the discussion?'); + const titleText = (props.isFirst ? 'Be first to start the conversation' : 'Want to join the discussion?'); const handleSubscribeClick = (event) => { window.location.href = '#/portal/signup'; }; return ( -
-

{titleText}

- -

+

You need to be subscribed to a paid plan to be able to join the discussion.

diff --git a/apps/comments-ui/src/components/NotSignedInBox.js b/apps/comments-ui/src/components/NotSignedInBox.js index 395bf3fdef..adaeb8784c 100644 --- a/apps/comments-ui/src/components/NotSignedInBox.js +++ b/apps/comments-ui/src/components/NotSignedInBox.js @@ -12,9 +12,7 @@ const NotSignedInBox = (props) => { color: accentColor }; - const firstComment = (props.isFirst ? {borderTop: '0px', paddingTop: '0'} : {}); - - const titleText = (props.isFirst ? 'Want to be the first to comment?' : 'Want to join the discussion?'); + const titleText = (props.isFirst ? 'Be first to start the conversation' : 'Want to join the discussion?'); const handleSubscribeClick = (event) => { window.location.href = '#/portal/signup'; @@ -25,14 +23,14 @@ const NotSignedInBox = (props) => { }; return ( -
-

{titleText}

- -

+

Already have an account? - +

); diff --git a/apps/comments-ui/src/components/Pagination.js b/apps/comments-ui/src/components/Pagination.js index 28a1f8da76..af5bb2e5ca 100644 --- a/apps/comments-ui/src/components/Pagination.js +++ b/apps/comments-ui/src/components/Pagination.js @@ -21,7 +21,7 @@ const Pagination = (props) => { return ( ); }; diff --git a/apps/comments-ui/src/components/RepliesPagination.js b/apps/comments-ui/src/components/RepliesPagination.js index fbba810ce0..f09b6f8ea3 100644 --- a/apps/comments-ui/src/components/RepliesPagination.js +++ b/apps/comments-ui/src/components/RepliesPagination.js @@ -7,7 +7,7 @@ const RepliesPagination = (props) => { return ( ); };