Revert "reversed order of tech talks so newer ones show up first, (temporary change)"
continuous-integration/drone/push Build is passing Details

This reverts commit b2bff3fe79.
This commit is contained in:
Shahan Nedadahandeh 2022-03-24 00:57:58 -04:00
parent b2bff3fe79
commit 69b26d6fe3
1 changed files with 1 additions and 1 deletions

View File

@ -35,5 +35,5 @@ export async function getTechTalks() {
const names = await getTechTalkNames();
const talks = await Promise.all(names.map(getTechTalk));
return talks.sort((a, b) => b.metadata.index - a.metadata.index);
return talks.sort((a, b) => a.metadata.index - b.metadata.index);
}