From c52173c64b67f3ed2dbd8574234110ceb5bdf4a9 Mon Sep 17 00:00:00 2001 From: eal Date: Mon, 20 Nov 2017 16:57:22 +0200 Subject: [PATCH] Make babies with the linter. --- src/components/post_status_form/post_status_form.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 30c054b0..0bce031e 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -79,12 +79,13 @@ const PostStatusForm = { if (matchedGroups.length <= 0) { return false } + /* eslint-disable */ return map(take(matchedGroups, 5), ({nickname, original_logo}) => ({ - // eslint-disable-next-line camelcase screen_name: `!${nickname}`, name: '', img: original_logo || 'https://placehold.it/48x48' })) + /* eslint-enable */ } else { return false }