Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
OGoodness committed Feb 16, 2021
1 parent d4a53ba commit e448337
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/stats/overall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ export function generateOverallStats(

const conversionCount = conversions.length;
const successfulConversionCount = successfulConversions.length;
const totalDamage = _.sumBy(conversions, (conversion) => conversion.moves.reduce((total, move) => total + move.damage, 0)) || 0;
const totalDamage =
_.sumBy(conversions, (conversion) => conversion.moves.reduce((total, move) => total + move.damage, 0)) || 0;
const killCount = opponentEndedStocks.length;

return {
Expand Down

0 comments on commit e448337

Please sign in to comment.