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 })