Remove console statements
This commit is contained in:
parent
ac9326c249
commit
b9b3ddc79f
@ -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);
|
||||
|
||||
@ -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]);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user