Skip to content

Commit

Permalink
Fix greencard custom cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Augsorn Chanklad committed Jul 8, 2019
1 parent 9a7c20b commit edd0649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/custom.cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
'events': () => firebase.getNonWeeklyEvents().then(eventListTemplate),
'weeklyevents': () => firebase.getWeeklyEvents().then(eventListTemplate),
'greycards': () => poporingRepo.getCards('grey').then(data => itemByCategoryTemplate('Cheapest common cards', data)),
'greencards': () => poporingRepo.getCards('greencards').then(data => itemByCategoryTemplate('Cheapest uncommon cards', data)),
'greencards': () => poporingRepo.getCards('green').then(data => itemByCategoryTemplate('Cheapest uncommon cards', data)),
'bluecards': () => poporingRepo.getCards('blue').then(data => itemByCategoryTemplate('Cheapest rare cards', data)),
'trending': () => poporingRepo.getAllTrendingList().then(trendingTemplate),
'materials': () => poporingRepo.getActiveItemPricesByCategory('Material').then(data => itemByCategoryTemplate('Material prices', data)),
Expand Down

0 comments on commit edd0649

Please sign in to comment.