a tool for shared writing and social publishing

remove unread state from reader and text from discover

+1 -5
-4
app/discover/page.tsx
··· 62 62 <div className="max-w-prose mx-auto w-full"> 63 63 <div className="discoverHeader flex flex-col items-center text-center pt-2 px-4"> 64 64 <h1>Discover</h1> 65 - <p className="text-lg text-secondary italic mb-2"> 66 - Explore publications on Leaflet ✨ Or{" "} 67 - <Link href="/lish/createPub">make your own</Link>! 68 - </p> 69 65 </div> 70 66 <SortedPublicationList publications={publications} order={props.order} /> 71 67 </div>
+1 -1
components/ActionBar/Navigation.tsx
··· 117 117 }; 118 118 119 119 const ReaderButton = (props: { current?: boolean; subs: boolean }) => { 120 - let readerUnreads = true; 120 + let readerUnreads = false; 121 121 122 122 if (!props.subs) return; 123 123 return (