From 762b43d84752232962c66e8a558394ec84cf31e2 Mon Sep 17 00:00:00 2001 From: Augustus Mayo Date: Mon, 4 Aug 2025 17:11:16 -0500 Subject: [PATCH 1/2] Remove abandoned RFDs from index --- app/routes/_index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index 429872e..e6af8ac 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -73,6 +73,10 @@ export default function Index() { if (authorEmailParam || authorNameParam) { rfds = rfds.filter((rfd) => { + if (rfd.state === 'abandoned') { + return false + } + if (!rfd.authors) { return false } From 5388c973ae156d07766c227b043f2ceea8b5ab49 Mon Sep 17 00:00:00 2001 From: Augustus Mayo Date: Mon, 4 Aug 2025 17:20:53 -0500 Subject: [PATCH 2/2] Fmt --- app/routes/_index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index e6af8ac..39f1791 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -76,7 +76,7 @@ export default function Index() { if (rfd.state === 'abandoned') { return false } - + if (!rfd.authors) { return false }