diff --git a/devcon/src/pages/road-to-devcon.tsx b/devcon/src/pages/road-to-devcon.tsx index c116e10f0..5e2717723 100644 --- a/devcon/src/pages/road-to-devcon.tsx +++ b/devcon/src/pages/road-to-devcon.tsx @@ -153,6 +153,14 @@ const tableColumns: Array = [ key: 'Name', sort: SortVariation.basic, render: item => { + if (item.Link) { + return ( + + {item.Name} + + ) + } + return

{item.Name}

}, }, @@ -183,20 +191,20 @@ const tableColumns: Array = [ return

{item.Team}

}, }, - { - title: 'Link', - key: 'Link', - // sort: SortVariation.basic, - render: item => { - if (!item.Link) return null - - return ( - - {item.Link} - - ) - }, - }, + // { + // title: 'Link', + // key: 'Link', + // // sort: SortVariation.basic, + // render: item => { + // if (!item.Link) return null + + // return ( + // + // {item.Link} + // + // ) + // }, + // }, { title: 'Social', key: 'Social', @@ -821,10 +829,10 @@ export default pageHOC(function RoadToDevcon(props: any) { title: 'Grants', to: '#grants', }, - { - title: 'Communities', - to: '#communities', - }, + // { + // title: 'Communities', + // to: '#communities', + // }, ]} >