From 0a95cd41b0936e1d387542690bf302969f562438 Mon Sep 17 00:00:00 2001 From: Jared Schoeny Date: Thu, 4 Dec 2025 09:54:11 -1000 Subject: [PATCH] Hide hacks without patches from landing page --- src/app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index d37c54b..42288e8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -25,6 +25,7 @@ export default async function Home() { .from("hacks") .select("slug,title,summary,description,base_rom,downloads,created_by,current_patch,original_author") .eq("approved", true) + .not("current_patch", "is", null) .order("downloads", { ascending: false }) .limit(6);