From f3176de9509526720733e6ab378e6e9e345f9f46 Mon Sep 17 00:00:00 2001 From: eight Date: Tue, 12 Sep 2017 18:57:06 +0800 Subject: [PATCH] Fix: findDupUsercss indent --- background/storage.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/background/storage.js b/background/storage.js index 58ea0796..bad07c81 100644 --- a/background/storage.js +++ b/background/storage.js @@ -563,9 +563,7 @@ function findDupUsercss(style) { return getStyles({id: style.id}).then(s => s[0]); } return getStyles().then(styles => - styles.find( - s => s.name === style.name && s.namespace === style.namespace - ) + styles.find(s => s.name === style.name && s.namespace === style.namespace) ); }