Hide hacks without patches from landing page

This commit is contained in:
Jared Schoeny
2025-12-04 09:54:11 -10:00
parent 994bebe7a3
commit 0a95cd41b0

View File

@@ -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);