From f3c68bf351f6ec8a65a87989cdbf7693282407bb Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Mon, 20 Oct 2025 14:26:23 +0200 Subject: [PATCH] feat(scripts): always show Newest carousel regardless of filters; allow duplicates when filters active (#195) (#202) --- src/app/_components/ScriptsGrid.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/_components/ScriptsGrid.tsx b/src/app/_components/ScriptsGrid.tsx index 6ff8142..e113f40 100644 --- a/src/app/_components/ScriptsGrid.tsx +++ b/src/app/_components/ScriptsGrid.tsx @@ -651,8 +651,8 @@ export function ScriptsGrid({ onInstallScript }: ScriptsGridProps) { onViewModeChange={setViewMode} /> - {/* Newest Scripts Carousel - Only show when no filters are active */} - {!hasActiveFilters && newestScripts.length > 0 && ( + {/* Newest Scripts Carousel - Always show when there are newest scripts */} + {newestScripts.length > 0 && (