Remove console statements

This commit is contained in:
Sam Becker 2025-08-28 09:23:49 -05:00
parent ac9326c249
commit b9b3ddc79f
2 changed files with 1 additions and 5 deletions

View File

@ -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);

View File

@ -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]);