bug: double padded notes on profile

This commit is contained in:
2023-05-10 13:57:45 +01:00
parent ec4e6498d3
commit 6de9c566e7
4 changed files with 20 additions and 22 deletions

View File

@ -114,7 +114,7 @@ const Timeline = (props: TimelineProps) => {
}
return (
<div className="main-content">
<>
{latestFeed.length > 0 && (
<>
<div className="card latest-notes pointer" onClick={() => onShowLatest()} ref={ref}>
@ -149,7 +149,7 @@ const Timeline = (props: TimelineProps) => {
<Skeleton width="100%" height="120px" margin="0 0 16px 0" />
</LoadMore>
)}
</div>
</>
);
};
export default Timeline;