From ea7d1b7de9af63270a37e62973877a2833273d4b Mon Sep 17 00:00:00 2001 From: Andrew Luca Date: Fri, 17 Jan 2020 23:33:12 +0200 Subject: [PATCH] fix(tags): increase tag count by 1 (#442) Closes #440 --- src/util/stats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/stats.js b/src/util/stats.js index 6cca642d..d41e05d8 100644 --- a/src/util/stats.js +++ b/src/util/stats.js @@ -21,7 +21,7 @@ export function countries() { .reduce((acc, country) => { if (acc[country.name]) { // exists, update - acc[country.name].count += acc[country.name].count; + acc[country.name].count += 1; } else { acc[country.name] = { ...country,