From fe901142aa669e329458ec517560e11194d6b1ad Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Tue, 23 Oct 2018 17:20:54 -0500 Subject: [PATCH] Split long string over two lines Signed-off-by: Aaron Raimist --- src/components/structures/GroupView.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/structures/GroupView.js b/src/components/structures/GroupView.js index 8a2b7a23ca..5d23194702 100644 --- a/src/components/structures/GroupView.js +++ b/src/components/structures/GroupView.js @@ -753,9 +753,8 @@ export default React.createClass({ warnings.push(( { " " /* Whitespace, otherwise the sentences get smashed together */ } - { /* eslint-disable max-len */ } - { _t("You are an administrator of this community. You will not be able to rejoin without an invite from another administrator.") } - { /* eslint-enable max-len */ } + { _t("You are an administrator of this community. You will not be " + + "able to rejoin without an invite from another administrator.") } )); }