From 4c2e70c95fc4c70c774ac0d6b7cb9b0a1f610402 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Fri, 11 Dec 2020 14:27:02 -0600 Subject: [PATCH] Add sortedAppList variable --- helpers/get-list.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, ]