diff --git a/src/utils/windowUtils.js b/src/utils/windowUtils.js index 7eb29cf2..c13c803b 100644 --- a/src/utils/windowUtils.js +++ b/src/utils/windowUtils.js @@ -3,7 +3,7 @@ export const getViewportHeight = (): number => ( // $FlowIssue - window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight // $FlowIssue + document.documentElement.clientHeight || document.body.clientHeight // $FlowIssue ); export const getScrollX = (): number => {