diff --git a/public/favicon.ico b/public/favicon.ico index dd64563..2cf297b 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/src/utils/redux.js b/src/utils/redux.js index e61f1b2..75a9652 100644 --- a/src/utils/redux.js +++ b/src/utils/redux.js @@ -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) ) @@ -57,6 +56,8 @@ export default function createReducer(initialState, reducerMap) { } } + if (state !== newState) setTimeout(ReactTooltip.rebuild, 1000) // Attach Tooltips + return newState } }