Fix UI for activity feed initial empty state (#1742)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
Minor change: Remove "You have no more recorded activity" message for initial empty state (i.e. on first setup)
|
||||
@@ -165,7 +165,7 @@ const ActivityFeed = (): JSX.Element => {
|
||||
Load more
|
||||
</Button>
|
||||
)}
|
||||
{!isLoadingError && !isLoading && !showMore && (
|
||||
{!isLoadingError && !isLoading && !isEmpty(activities) && !showMore && (
|
||||
<div className={`${baseClass}__no-more-activities`}>
|
||||
<p>You have no more recorded activity.</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user