Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
egoist committed Sep 30, 2019
1 parent a282fa7 commit c84e21e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/global.js
Expand Up @@ -73,7 +73,7 @@ export const Global = {
insertStyles() {
if (this.serialized.next !== undefined) {
// insert keyframes
insertStyles(cache, this.serialized.next, true)
insertStyles(this.cache, this.serialized.next, true)
}

if (this.sheet.tags.length > 0) {
Expand Down
1 change: 1 addition & 0 deletions src/shared.js
Expand Up @@ -9,6 +9,7 @@ export const getCache = () => {
cache = cache || createCache()
return cache
}

return createCache()
}

2 changes: 1 addition & 1 deletion src/styled.js
Expand Up @@ -114,7 +114,7 @@ const createStyled = (tag, options = {}) => {
},
children
)
console.log(IS_BROWSER, rules)
console.log(IS_BROWSER, rules)
if (!IS_BROWSER && rules !== undefined) {
let serializedNames = serialized.name
let { next } = serialized
Expand Down

0 comments on commit c84e21e

Please sign in to comment.