bug:fix recent page hiding last item on scroll #1468 (#2411)

This commit is contained in:
Prashant Indurkar 2023-10-12 16:35:00 +05:30 committed by GitHub
parent 5ac2c270f7
commit e0fcc0c876
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ export const RecentPagesList: React.FC<TPagesListProps> = ({ viewType }) => {
if (pages[key].length === 0) return null; if (pages[key].length === 0) return null;
return ( return (
<div key={key} className="h-full overflow-hidden"> <div key={key} className="h-full overflow-hidden pb-9">
<h2 className="text-xl font-semibold capitalize mb-2"> <h2 className="text-xl font-semibold capitalize mb-2">
{replaceUnderscoreIfSnakeCase(key)} {replaceUnderscoreIfSnakeCase(key)}
</h2> </h2>