diff --git a/TODO.md b/TODO.md index 3da99da..7a5214e 100644 --- a/TODO.md +++ b/TODO.md @@ -44,8 +44,7 @@ ## Баги -- в статусе профиля нет переноса на новые линии -- копки соц. сетей в профиле немного обрезаются +... ## Другое diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index 8a39ae8..0dc246f 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -85,10 +85,6 @@ export const ProfilePage = (props: any) => { {user.is_verified && ( )} - {/* {user.is_banned && } */} - - {/* */} - {/* */} { >
{user.login}
-
+
{user.status}
@@ -107,13 +103,34 @@ export const ProfilePage = (props: any) => { {hasSocials && ( - {socials.map((social) => { - if (!social.nickname) return null; - if (social.name == "discord") + {socials + .filter((social: any) => { + if (!social.nickname) { + return false; + } + return true; + }) + .map((social: any) => { + if (social.name == "discord") + return ( + + ); return ( - ); - return ( - - ); - })} + })} )}