Fix scanned Game apps erroring games logic

This commit is contained in:
Sam Carlton 2021-04-24 21:37:44 -05:00
parent 2176b0fabd
commit 44750f779e

View file

@ -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 ],
])