diff --git a/src/photo/PhotoGrid.tsx b/src/photo/PhotoGrid.tsx index 84237d58..b2190f9a 100644 --- a/src/photo/PhotoGrid.tsx +++ b/src/photo/PhotoGrid.tsx @@ -60,7 +60,7 @@ export default function PhotoGrid({ )} type={animate === false ? 'none' : undefined} canStart={canStart} - duration={0.8} + duration={0.7} staggerDelay={0.04} distanceOffset={40} animateOnFirstLoadOnly={animateOnFirstLoadOnly} diff --git a/src/photo/index.ts b/src/photo/index.ts index 2ab3c9ec..e36119f1 100644 --- a/src/photo/index.ts +++ b/src/photo/index.ts @@ -33,9 +33,9 @@ export const INFINITE_SCROLL_FEED_MULTIPLE = // INFINITE SCROLL: GRID export const INFINITE_SCROLL_GRID_INITIAL = - process.env.NODE_ENV === 'development' ? 12 : 48; + process.env.NODE_ENV === 'development' ? 12 : 60; export const INFINITE_SCROLL_GRID_MULTIPLE = - process.env.NODE_ENV === 'development' ? 12 : 48; + process.env.NODE_ENV === 'development' ? 12 : 60; // Thumbnails below large photos on pages like /p/[photoId] export const RELATED_GRID_PHOTOS_TO_SHOW = 12;