From d73dadf3a4e81ab9e15221f649e9700ec315b0e9 Mon Sep 17 00:00:00 2001 From: Brendan Schlagel Date: Fri, 26 Sep 2025 11:53:54 -0400 Subject: [PATCH] more tweaks to fix discover page overscroll on mobile --- app/discover/SortedPublicationList.tsx | 2 +- app/discover/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/discover/SortedPublicationList.tsx b/app/discover/SortedPublicationList.tsx index cb2f03ad..71aaa6b5 100644 --- a/app/discover/SortedPublicationList.tsx +++ b/app/discover/SortedPublicationList.tsx @@ -21,7 +21,7 @@ export function SortedPublicationList(props: { setOrder(o); }} /> -
+
{props.publications ?.filter((pub) => pub.documents_in_publications.length > 0) ?.sort((a, b) => { diff --git a/app/discover/page.tsx b/app/discover/page.tsx index 7ae75c98..2e2a8cd8 100644 --- a/app/discover/page.tsx +++ b/app/discover/page.tsx @@ -59,7 +59,7 @@ const DiscoverContent = async (props: { order: string }) => { let publications = await getPublications(); return ( -
+

Discover

-- 2.51.2