From b9b3ddc79f78574c62a2172dfcc822b034204ff0 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Thu, 28 Aug 2025 09:23:49 -0500 Subject: [PATCH] Remove console statements --- src/app/AppStateProvider.tsx | 5 +---- src/components/AnchorSections.tsx | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) 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]);