From 4a969118854027e6db6c029dba5b6eb243c87b4b Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Tue, 10 Feb 2026 16:02:11 -0700 Subject: [PATCH] Make it so if a category is selected, it'll only show the versions from that category --- src/app/layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3f9346b..1abef62 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -101,6 +101,7 @@ export default function RootLayout ({ return false if (game && v.game != game) return false + if (category != -1 && v.category != category) return false if (downloadProgress.length != 0) { return !downloadProgress.some(d => d.version === v.id) }