chore: link sorting

This commit is contained in:
Cory Dransfeldt 2023-09-08 20:32:00 -07:00
parent 138ca40c3c
commit 979a41b56d
No known key found for this signature in database
2 changed files with 2 additions and 4 deletions

View file

@ -10,8 +10,7 @@ module.exports = async function () {
fetchOptions: { headers },
})
const feed = await res
const articles = feed.feed
return articles.reverse().map((article) => {
return feed.feed.map((article) => {
const tags = article['content']['tags'].map((tag) => tag['name'])
return {
url: article['content']['url'],