We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4f468 commit a3b52d8Copy full SHA for a3b52d8
src/shared/components/tc-communities/JoinCommunity/ConfirmModal/index.jsx
@@ -32,26 +32,16 @@ export default function ConfirmModal({
32
let text;
33
if (userId) {
34
text = (
35
- <p>
36
-Do you want to join
37
- {communityName}
38
-?
39
- </p>
+ <p>Do you want to join the {communityName}?</p>
40
);
41
if (skipConfirmJoin) {
42
setImmediate(() => join(token, joinGroupId || groupIds[0], userId));
43
}
44
} else {
45
text = customTcAuthModalText || (
46
<div>
47
48
-You must be a Topcoder member before you can join the
49
50
-.
51
52
53
-To join, login if you are already a member. If not, register first.
54
+ <p>You must be a Topcoder member before you can join the {communityName}</p>
+ <p>To join, login if you are already a member. If not, register first.</p>
55
</div>
56
57
0 commit comments