We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d3b5b commit f3c68bfCopy full SHA for f3c68bf
src/app/_components/ScriptsGrid.tsx
@@ -651,8 +651,8 @@ export function ScriptsGrid({ onInstallScript }: ScriptsGridProps) {
651
onViewModeChange={setViewMode}
652
/>
653
654
- {/* Newest Scripts Carousel - Only show when no filters are active */}
655
- {!hasActiveFilters && newestScripts.length > 0 && (
+ {/* Newest Scripts Carousel - Always show when there are newest scripts */}
+ {newestScripts.length > 0 && (
656
<div className="mb-8">
657
<div className="bg-card border-l-4 border-l-primary border border-border rounded-lg p-6 shadow-lg">
658
<div className="flex items-center justify-between mb-4">
0 commit comments