diff --git a/app/components/Profile/Profile.ActivityCollections.tsx b/app/components/Profile/Profile.ActivityCollections.tsx index 882965b..42e0fe7 100644 --- a/app/components/Profile/Profile.ActivityCollections.tsx +++ b/app/components/Profile/Profile.ActivityCollections.tsx @@ -49,14 +49,17 @@ export const ProfileActivityCollections = (props: { ); })} - - -
- -

Все коллекции

-
- -
+ + {props.content && props.content.length > 0 ? + + +
+ +

Все коллекции

+
+ +
+ :

У пользователя нет коллекций

} ); diff --git a/app/components/Profile/Profile.ActivityFriends.tsx b/app/components/Profile/Profile.ActivityFriends.tsx index 50aa264..78e2ac2 100644 --- a/app/components/Profile/Profile.ActivityFriends.tsx +++ b/app/components/Profile/Profile.ActivityFriends.tsx @@ -56,12 +56,14 @@ export const ProfileActivityFriends = (props: { content: any }) => { ); })} - - - + {props.content && props.content.length > 0 ? + + + + :

У пользователя нет друзей

} );