diff --git a/src/app/AppStateProvider.tsx b/src/app/AppStateProvider.tsx index ac2dc151..f183be48 100644 --- a/src/app/AppStateProvider.tsx +++ b/src/app/AppStateProvider.tsx @@ -123,10 +123,7 @@ export default function AppStateProvider({ setHasLoaded(true); storeTimezoneCookie(); setUserEmailEager(getAuthEmailCookie()); - if (IS_PRODUCTION) { - console.log('Warming redis'); - warmRedisAction(); - } + if (IS_PRODUCTION) { warmRedisAction(); } const timeout = setTimeout(() => { setHasLoadedWithAnimations(true); }, 1000); diff --git a/src/components/AnchorSections.tsx b/src/components/AnchorSections.tsx index ad096894..c851f345 100644 --- a/src/components/AnchorSections.tsx +++ b/src/components/AnchorSections.tsx @@ -44,7 +44,6 @@ export default function AnchorSections({ // Reset section when scrolled to the top const _onScroll = useCallback(() => { if (window.scrollY <= 0) { - console.log('resetting section'); updateHash(firstSection); } }, [updateHash, firstSection]);