diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index 429872e..39f1791 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 }