From 0730b7c7d453ad86743cc76e3ec1b09c32081d39 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Fri, 4 Apr 2025 06:04:23 +0500 Subject: [PATCH] add empty states --- .../Profile/Profile.ActivityCollections.tsx | 19 +++++++++++-------- .../Profile/Profile.ActivityFriends.tsx | 14 ++++++++------ 2 files changed, 19 insertions(+), 14 deletions(-) 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 ? + + + + :

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

} );