Skip to content

Commit

Permalink
fix(token): in travis-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
niklas-westman authored Oct 9, 2020
1 parent 4cbb7f7 commit b3512b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/formatters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const formatMoney = (money: number, currency?: string, includeDecimals =
export const formatPercentage = (fraction: number) => {
if (fraction != null) {
return (fraction * 100).toFixed(2).replace('.', ',') + ' %';
}
}

return '';
};
Expand Down

0 comments on commit b3512b9

Please sign in to comment.