Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
feat(favicon): change to darker logo
Browse files Browse the repository at this point in the history
  • Loading branch information
epiqueras committed Feb 22, 2018
1 parent 3681f27 commit 32c3ec1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified public/favicon.ico
Binary file not shown.
3 changes: 2 additions & 1 deletion src/utils/redux.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export default function createReducer(initialState, reducerMap) {
const typePrefixLen = typePrefix.length
const actionTypePrefix = action.type.slice(0, typePrefixLen)
if (typePrefix === actionTypePrefix) {
setTimeout(ReactTooltip.rebuild, 1000) // Attach Tooltips
const resource = constantToCamelCase(
action.type.slice(typePrefixLen + 1)
)
Expand All @@ -57,6 +56,8 @@ export default function createReducer(initialState, reducerMap) {
}
}

if (state !== newState) setTimeout(ReactTooltip.rebuild, 1000) // Attach Tooltips

return newState
}
}
Expand Down

0 comments on commit 32c3ec1

Please sign in to comment.