Skip to content

Commit 65ddbed

Browse files
committed
Fix linting errors
1 parent 6775529 commit 65ddbed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/themr.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,13 @@ export function themeable(original = {}, mixin) {
167167

168168
//merging reducer
169169
(result, key) => {
170-
170+
171171
const originalValue = typeof original[key] !== 'function'
172-
? (original[key] || '')
173-
: '';
172+
? (original[key] || '')
173+
: ''
174174
const mixinValue = typeof mixin[key] !== 'function'
175-
? (mixin[key] || '')
176-
: '';
175+
? (mixin[key] || '')
176+
: ''
177177

178178
let newValue
179179

0 commit comments

Comments
 (0)