chore: clean up and bump node version

This commit is contained in:
Jef LeCompte
2021-01-17 13:44:05 -05:00
parent b2ebac36c0
commit dbde7814af
19 changed files with 38 additions and 40 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ export async function processBackoffDelay(
* the page renders fine and its content is accessible.
*/
let backoffStatusCodes = store.backoffStatusCodes;
let {backoffStatusCodes} = store;
if (!backoffStatusCodes) {
backoffStatusCodes = [403];
+3 -3
View File
@@ -366,15 +366,15 @@ export function updateStores() {
updateStores();
export function getAllBrands() {
return Array.from(brands);
return [...brands];
}
export function getAllSeries() {
return Array.from(series);
return [...series];
}
export function getAllModels() {
return Array.from(models);
return [...models];
}
export function getStores() {