Replace sandbox with wiki in developer popover

This commit is contained in:
Fabio Berger 2018-10-16 14:35:10 +01:00
parent fb0e0473de
commit 6ff35172d6

View File

@ -43,6 +43,10 @@ const popularDocsToLinkInfos: ALink[] = [
},
];
const usefulLinksToLinkInfo: ALink[] = [
{
title: Key.Wiki,
to: WebsitePaths.Wiki,
},
{
title: Key.Github,
to: constants.URL_GITHUB_ORG,
@ -53,11 +57,6 @@ const usefulLinksToLinkInfo: ALink[] = [
to: WebsitePaths.Whitepaper,
shouldOpenInNewTab: true,
},
{
title: Key.Sandbox,
to: constants.URL_SANDBOX,
shouldOpenInNewTab: true,
},
];
interface DevelopersDropDownProps {