diff --git a/src/components/lastAdded/FooterNav.astro b/src/components/lastAdded/FooterNav.astro
index edbdb65..8c8682b 100644
--- a/src/components/lastAdded/FooterNav.astro
+++ b/src/components/lastAdded/FooterNav.astro
@@ -17,7 +17,7 @@ fullPageList.forEach((n) => {
})
const currentListIndex = pageList.findIndex((l) => l.includes(page))
-const currentList = pageList[currentListIndex]
+const currentList = pageList[currentListIndex] ?? []
---
diff --git a/src/layouts/PaginatedAlbumList.astro b/src/layouts/PaginatedAlbumList.astro
index b1488b3..ad22422 100644
--- a/src/layouts/PaginatedAlbumList.astro
+++ b/src/layouts/PaginatedAlbumList.astro
@@ -13,16 +13,12 @@ import DefaultSEO from 'components/DefaultSEO.astro'
import FooterNav from 'components/lastAdded/FooterNav.astro'
const { albums, limitMD, limitXS, ...listProps } = Astro.props
-
-if (albums.length === 0) {
- Astro.redirect('/404')
-}
---