diff --git a/src/components/views/dialogs/InviteDialog.js b/src/components/views/dialogs/InviteDialog.js
index b70f2fee10..934ed12ac1 100644
--- a/src/components/views/dialogs/InviteDialog.js
+++ b/src/components/views/dialogs/InviteDialog.js
@@ -1103,16 +1103,28 @@ export default class InviteDialog extends React.PureComponent {
const communityName = GroupStore.getSummary(communityId)?.profile?.name || communityId;
helpText = _t(
"Start a conversation with someone using their name, username (like ) or email address. " +
- "This won't invite them to %(communityName)s. To invite someone to %(communityName)s, click here.",
+ "This won't invite them to %(communityName)s. To invite someone to %(communityName)s, click " +
+ "here.",
{communityName}, {
userId: () => {
- return {userId};
+ return (
+ {userId}
+ );
},
a: (sub) => {
- return {sub}
+ return (
+ {sub}
+ );
},
},
- )
+ );
}
buttonText = _t("Go");
goButtonFn = this._startDm;