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}
-