tidy up eslint.js

This commit is contained in:
Olivier Gagnon
2022-07-19 12:19:32 -04:00
parent 2f029e94b4
commit c977a9def7
9 changed files with 12 additions and 33 deletions

View File

@@ -77,7 +77,7 @@ interface IBNMultTableProps {
const BNMultTable = (props: IBNMultTableProps): React.ReactElement => {
const rowsArray = Object.entries(props.rowData)
.filter(([key, _value]) => props.mults[key] !== defaultMultipliers[key])
.filter(([key]) => props.mults[key] !== defaultMultipliers[key])
.map(([key, value]) => (
<StatsRow
key={uniqueId()}