Skip to content

Commit

Permalink
Merge pull request #40 from eldar-gamisoniya/onload-ssr-fix
Browse files Browse the repository at this point in the history
Onload ssr fix
  • Loading branch information
faceyspacey authored Sep 7, 2017
2 parents 3404664 + 69b42f3 commit 01d10d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const loadFromCache = (
chunkName: StrFun,
props: Object,
modCache: Object
) => modCache[callForString(chunkName, props)]
) => !isServer && modCache[callForString(chunkName, props)]

export const cacheExport = (
exp: any,
Expand Down

0 comments on commit 01d10d2

Please sign in to comment.