fix(tags): increase tag count by 1 (#442)

Closes #440
This commit is contained in:
Andrew Luca 2020-01-17 23:33:12 +02:00 committed by GitHub
parent b7c00c0cd1
commit ea7d1b7de9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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