{user.login}
-
@@ -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 (
-
)}