a tool for shared writing and social publishing

don't include archived when filtering on docs

+1 -1
+1 -1
app/(home-pages)/home/HomeLayout.tsx
··· 314 314 return ( 315 315 (filter.drafts && drafts) || 316 316 (filter.published && published) || 317 - (filter.docs && docs) || 317 + (filter.docs && docs && (archived === false || archived === null)) || 318 318 (filter.templates && templates) || 319 319 (filter.archived && archived) 320 320 );