From b8a6f41d3e58e26005353c0daf67262b89fab6bd Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 21:54:01 +0000 Subject: [PATCH] Reorder video categories displayed on the homepage Reorders the "Meist Angesehen" video category to appear after "FOLX STADL" in the NetflixGrid component. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 051a65da-1176-4478-a61c-c662f2a15536 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/051a65da-1176-4478-a61c-c662f2a15536/9NQBiz8 --- client/src/components/netflix-grid.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 9256edb..3cd28fe 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -94,14 +94,14 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) { return result; })() }, - { - title: "Meist Angesehen", - videos: sortedByViews.slice(0, 10) - }, ...(folxStadlVideos.length > 0 ? [{ title: "FOLX STADL", videos: folxStadlVideos.slice(0, 12) }] : []), + { + title: "Meist Angesehen", + videos: sortedByViews.slice(0, 10) + }, { title: "Trending Now", videos: videos.slice(0, 12)