Skip to content

Commit

Permalink
Fix bad template string
Browse files Browse the repository at this point in the history
  • Loading branch information
Zacqary committed Jul 9, 2020
1 parent 04b4662 commit 00dca98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const processGroupByResults = (
}, []);

groupResults.forEach((group) => {
const alertInstance = alertInstanceFactory(`{group.name}`);
const alertInstance = alertInstanceFactory(group.name);
const documentCount = group.documentCount;

if (checkValueAgainstComparatorMap[count.comparator](documentCount, count.value)) {
Expand Down

0 comments on commit 00dca98

Please sign in to comment.