diff --git a/src/shared/components/ProfilePage/ExternalLink/index.jsx b/src/shared/components/ProfilePage/ExternalLink/index.jsx
index 79d71e2df8..ae8043768e 100644
--- a/src/shared/components/ProfilePage/ExternalLink/index.jsx
+++ b/src/shared/components/ProfilePage/ExternalLink/index.jsx
@@ -57,7 +57,7 @@ const ExternalLink = ({ data, type }) => {
{
- type === 'github'
+ type === 'github' && data !== null
&& (
@@ -85,7 +85,7 @@ repositories
)
}
{
- type === 'stackoverflow'
+ type === 'stackoverflow' && data !== null
&& (
@@ -113,7 +113,7 @@ answers
)
}
{
- type === 'behance'
+ type === 'behance' && data !== null
&& (
@@ -141,7 +141,7 @@ likes
)
}
{
- type === 'behance'
+ type === 'behance' && data !== null
&& (
@@ -169,7 +169,7 @@ likes
)
}
{
- type === 'dribbble'
+ type === 'dribbble' && data !== null
&& (
@@ -197,7 +197,7 @@ likes
)
}
{
- type === 'bitbucket'
+ type === 'bitbucket' && data !== null
&& (
@@ -225,7 +225,7 @@ repositories
)
}
{
- type === 'twitter'
+ type === 'twitter' && data !== null
&& (
@@ -253,7 +253,7 @@ followers
)
}
{
- type === 'linkedin'
+ type === 'linkedin' && data !== null
&& (
@@ -266,7 +266,7 @@ followers
)
}
{
- type === 'weblink'
+ type === 'weblink' && data !== null
&& (