search on web
This commit is contained in:
@@ -65,7 +65,7 @@ const Profile = () => {
|
||||
setFollowers(
|
||||
Array.isArray(currentUserData?.followedBy)
|
||||
? currentUserData.followedBy.length
|
||||
: 0
|
||||
: 0,
|
||||
);
|
||||
return;
|
||||
}
|
||||
@@ -139,7 +139,8 @@ const Profile = () => {
|
||||
setSelectedProjectId(item.id);
|
||||
setMenuPosition(posTop);
|
||||
setShowMenu(
|
||||
(prev) => !prev || posTop?.top !== (menuPosition?.top ?? null)
|
||||
(prev) =>
|
||||
!prev || posTop?.top !== (menuPosition?.top ?? null),
|
||||
);
|
||||
}}
|
||||
/>
|
||||
@@ -231,7 +232,7 @@ const Profile = () => {
|
||||
|
||||
return (
|
||||
<Page
|
||||
backgroundImg={background.profileBG}
|
||||
backgroundImg={isWeb ? background.profileBgWeb : background.profileBG}
|
||||
headerType="NAVIGATE"
|
||||
hideBackButton={params?.noBack}
|
||||
contentContainerStyle={{
|
||||
|
||||
Reference in New Issue
Block a user