Skip to content

Commit

Permalink
fix: categories count
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Jul 6, 2020
1 parent bb53e28 commit 3dc60f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/store/src/Store/Store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export class Store implements StoryStore {
if (typeof acc[v] === 'undefined') {
acc[v] = 0;
}
acc[v] = acc[v] = 1;
acc[v] = acc[v] + 1;
}
});
return acc;
Expand Down

0 comments on commit 3dc60f0

Please sign in to comment.