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) ); }