diff --git a/helpers/get-list.js b/helpers/get-list.js index b241cf4..5629673 100644 --- a/helpers/get-list.js +++ b/helpers/get-list.js @@ -4,9 +4,10 @@ import homebrewList from '~/static/homebrew-list.json' import { byTimeThenNull } from '~/helpers/sort-list.js' +export const sortedAppList = appList.sort(byTimeThenNull) export const allList = [ - ...appList.sort(byTimeThenNull), + ...sortedAppList, ...homebrewList, ...gameList, ]