Primary finding
RSS feed crashes when a same-repo receipt has null closedAt is filtered, but cross-repo receipts with null mergedAt are not filtered before sort
mediumbugmedium
- apps/web/app/receipts.rss/route.ts:40-56
- apps/web/lib/receipts.ts:100-130
mapMergedRowsToReceipts filters out null mergedAt, and the type CrossRepoReceiptRow declares mergedAt as a non-null Date, so the rss route's sort `(a, b) => b.pubDate.getTime() - a.pubDate.getTime()` is safe at the type level. This is not a real bug — withdraw.
Recommendation
No action needed.