search on web

This commit is contained in:
Thomas Demirdjian
2025-10-02 17:53:17 +02:00
parent ea421d8eff
commit 8846ca05ff
14 changed files with 656 additions and 415 deletions
+4 -3
View File
@@ -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={{