From 44750f779ee16515dbd390171085de35d5a542e9 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 24 Apr 2021 21:37:44 -0500 Subject: [PATCH] Fix scanned Game apps erroring games logic --- helpers/categories.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/helpers/categories.js b/helpers/categories.js index 0e33b7a..00a1400 100644 --- a/helpers/categories.js +++ b/helpers/categories.js @@ -9,7 +9,6 @@ const categoryMap = new Map([ [ 'Business', 2 ], [ 'Entertainment', 5 ], [ 'Finance', 2 ], - [ 'Games', 100 ], [ 'Music', 6 ], [ 'Photo & Video', 7 ], [ 'Productivity', 2 ], @@ -17,6 +16,11 @@ const categoryMap = new Map([ [ 'Graphics & Design', 7 ], [ 'Developer Tools', 1 ], // [ 'Name', 1 ], + + // Needs work before apps can be assign games category + // so for now 'Games' genre is Entertainment + // [ 'Games', 100 ], + [ 'Games', 5 ], ])