diff --git a/.replit b/.replit index 2d8a3dc..9eb5d4c 100644 --- a/.replit +++ b/.replit @@ -40,4 +40,4 @@ args = "npm run dev" waitForPort = 5000 [agent] -integrations = ["javascript_database==1.0.0", "javascript_google_analytics==1.0.0"] +integrations = ["javascript_google_analytics==1.0.0", "javascript_database==1.0.0"] diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 3dc6d72..da52a66 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -418,9 +418,10 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate style={{ textShadow: '4px 4px 8px rgba(0,0,0,0.8), -2px -2px 4px rgba(0,0,0,0.6)', WebkitTextStroke: '2px rgba(0,0,0,0.8)', - fontFeatureSettings: 'normal' + fontFeatureSettings: 'normal', + fontVariantNumeric: 'normal' }}> - {String(index + 1)} + {(index + 1).toString()} )} { console.log(`Fetching videos from cache: limit=${limit}, offset=${offset}, search=${search}`); - const result = videoSyncService.getVideos(limit, offset, search); + const result = await videoSyncService.getVideos(limit, offset, search); console.log(`Returning ${result.videos.length} videos from cache (age: ${result.cacheAge}ms)`); // Apply face detection data from cache @@ -808,36 +808,18 @@ class BunnyStorage implements IStorage { } async getVideo(id: string): Promise