Commit 813d9949 authored by Max Alekseenko's avatar Max Alekseenko Committed by GitHub

Merge pull request #1861 from blockscout/add-discord-link

Add a link to discord to the app modal
parents e5954f8c cc8daaaf
...@@ -47,6 +47,7 @@ const MarketplaceAppModal = ({ ...@@ -47,6 +47,7 @@ const MarketplaceAppModal = ({
github, github,
telegram, telegram,
twitter, twitter,
discord,
logo, logo,
logoDarkMode, logoDarkMode,
categories, categories,
...@@ -62,6 +63,10 @@ const MarketplaceAppModal = ({ ...@@ -62,6 +63,10 @@ const MarketplaceAppModal = ({
icon: 'social/twitter_filled' as IconName, icon: 'social/twitter_filled' as IconName,
url: twitter, url: twitter,
} : null, } : null,
discord ? {
icon: 'social/discord_filled' as IconName,
url: discord,
} : null,
].filter(Boolean); ].filter(Boolean);
if (github) { if (github) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment