Skip to content

Commit a3b52d8

Browse files
committed
Fixed texts on join community modals
1 parent ef4f468 commit a3b52d8

File tree

1 file changed

+3
-13
lines changed
  • src/shared/components/tc-communities/JoinCommunity/ConfirmModal

1 file changed

+3
-13
lines changed

src/shared/components/tc-communities/JoinCommunity/ConfirmModal/index.jsx

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,16 @@ export default function ConfirmModal({
3232
let text;
3333
if (userId) {
3434
text = (
35-
<p>
36-
Do you want to join
37-
{communityName}
38-
?
39-
</p>
35+
<p>Do you want to join the&nbsp;{communityName}?</p>
4036
);
4137
if (skipConfirmJoin) {
4238
setImmediate(() => join(token, joinGroupId || groupIds[0], userId));
4339
}
4440
} else {
4541
text = customTcAuthModalText || (
4642
<div>
47-
<p>
48-
You must be a Topcoder member before you can join the
49-
{communityName}
50-
.
51-
</p>
52-
<p>
53-
To join, login if you are already a member. If not, register first.
54-
</p>
43+
<p>You must be a Topcoder member before you can join the&nbsp;{communityName}</p>
44+
<p>To join, login if you are already a member. If not, register first.</p>
5545
</div>
5646
);
5747
}

0 commit comments

Comments
 (0)