From 644636b9304c97ea3acbf183a0310252e4f346db Mon Sep 17 00:00:00 2001 From: desperado1802 Date: Fri, 20 Oct 2023 17:52:03 +0300 Subject: [PATCH] border indicating task running is removed from last 24 hours section --- .../Authenticated/ProfileScreen/components/ListCardItem.tsx | 3 ++- .../ProfileScreen/components/UserProfileTasks.tsx | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/mobile/app/screens/Authenticated/ProfileScreen/components/ListCardItem.tsx b/apps/mobile/app/screens/Authenticated/ProfileScreen/components/ListCardItem.tsx index 4046a53cc..27242d9ed 100644 --- a/apps/mobile/app/screens/Authenticated/ProfileScreen/components/ListCardItem.tsx +++ b/apps/mobile/app/screens/Authenticated/ProfileScreen/components/ListCardItem.tsx @@ -34,6 +34,7 @@ export type ListItemProps = { activeAuthTask: boolean viewType?: "default" | "unassign" profile?: IUserProfile + isNowTab?: boolean } export interface Props extends ListItemProps {} @@ -259,7 +260,7 @@ const ListCardItem: React.FC = (props) => { {dark ? ( diff --git a/apps/mobile/app/screens/Authenticated/ProfileScreen/components/UserProfileTasks.tsx b/apps/mobile/app/screens/Authenticated/ProfileScreen/components/UserProfileTasks.tsx index cac54450f..b2a88e5be 100644 --- a/apps/mobile/app/screens/Authenticated/ProfileScreen/components/UserProfileTasks.tsx +++ b/apps/mobile/app/screens/Authenticated/ProfileScreen/components/UserProfileTasks.tsx @@ -91,6 +91,7 @@ const UserProfileTasks: FC = observer(({ profile, content })