[FIX] Link to 30 seconds of knowledge wasn't working on website (#1031)
* the link for 30 seconds of knowledge was not working so I dove into this code base and found a working link to a chrome extension being used elsewhere and added that.
* Revert "the link for 30 seconds of knowledge was not working so I dove into this code base and found a working link to a chrome extension being used elsewhere and added that."
This reverts commit c89235da96.
* fix without formatting changes accidentally introduced with Prettier
This commit is contained in:
committed by
Angelos Chalaris
parent
4d179b4aff
commit
7c737ab9c9
@ -100,7 +100,7 @@ const IndexPage = props => {
|
||||
{ name: '30 seconds of React', url: 'https://react.30secondsofcode.org/' },
|
||||
{ name: '30 seconds of PHP', url: 'https://php.30secondsofcode.org/' },
|
||||
{ name: '30 seconds of Interviews', url: 'https://30secondsofinterviews.org/' },
|
||||
{ name: '30 seconds of Knowledge', url: 'https://30secondsofknowledge.org/' },
|
||||
{ name: '30 seconds of Knowledge', url: 'https://chrome.google.com/webstore/detail/30-seconds-of-knowledge/mmgplondnjekobonklacmemikcnhklla' },
|
||||
].map(v => (<li><a href={v.url} key={`link_${v.name}`} target='_blank' rel='noopener noreferrer'>{v.name}</a></li>))
|
||||
}
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user