-
-
{release.title_ru}
+
+
{release.title_ru}
= 1} />
= 2} />
diff --git a/app/components/Profile/Profile.User.tsx b/app/components/Profile/Profile.User.tsx
index e2033cc..538cd62 100644
--- a/app/components/Profile/Profile.User.tsx
+++ b/app/components/Profile/Profile.User.tsx
@@ -27,6 +27,7 @@ interface ProfileUserProps {
inst: string;
discord: string;
};
+ is_social_hidden: boolean;
}
export const ProfileUser = ({
@@ -41,8 +42,8 @@ export const ProfileUser = ({
isSponsor,
isBlocked,
socials,
+ is_social_hidden,
}: ProfileUserProps) => {
-
const theme = useThemeMode().mode;
return (
@@ -88,65 +89,66 @@ export const ProfileUser = ({
{status}
- {(socials.vk ||
- socials.tg ||
- socials.discord ||
- socials.tt ||
- socials.inst) && (
-
- {socials.vk && (
-
+ {!is_social_hidden &&
+ (socials.vk ||
+ socials.tg ||
+ socials.discord ||
+ socials.tt ||
+ socials.inst) && (
+
+ {socials.vk && (
+
+
+
+ )}
+ {socials.tg && (
+
+
+
+ )}
+ {socials.tt && (
+
+
+
+ )}
+ {socials.inst && (
+
+
+
+ )}
+ {socials.discord && (
-
- )}
- {socials.tg && (
-
-
-
- )}
- {socials.tt && (
-
-
-
- )}
- {socials.inst && (
-
-
-
- )}
- {socials.discord && (
-
- )}
-
- )}
+ )}
+
+ )}
);
};
diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx
index 6e5d043..77ce5f1 100644
--- a/app/pages/Profile.tsx
+++ b/app/pages/Profile.tsx
@@ -88,7 +88,7 @@ export const ProfilePage = (props: any) => {
) ?
"mt-4"
: ""
- }`}
+ } mb-4`}
>
{
inst: user.inst_page || null,
discord: user.discord_page || null,
}}
+ is_social_hidden={user.is_social_hidden}
/>
{authUser.token && (