Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit e73d2b8

Browse files
committed
Lint fixes
1 parent a4765e8 commit e73d2b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

js/views/components/moderators/Moderators.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import baseVw from '../../baseVw';
1111
import { openSimpleMessage } from '../../modals/SimpleMessage';
1212
import ModCard from './Card';
1313
import ModeratorsStatus from './Status';
14-
import bigNumber from "bignumber.js";
14+
import bigNumber from 'bignumber.js';
1515

1616
export default class extends baseVw {
1717
/**
@@ -154,8 +154,8 @@ export default class extends baseVw {
154154
const modCurs = data.moderatorInfo && data.moderatorInfo.acceptedCurrencies || [];
155155
const supportedCur = anySupportedByWallet(modCurs);
156156

157-
if(data.moderatorInfo.fee.feeType == "FIXED_PLUS_PERCENTAGE" &&
158-
!(data.moderatorInfo.fee.fixedFee.amount instanceof bigNumber) ) {
157+
if (data.moderatorInfo.fee.feeType === 'FIXED_PLUS_PERCENTAGE' &&
158+
!(data.moderatorInfo.fee.fixedFee.amount instanceof bigNumber)) {
159159
data.moderatorInfo.fee.fixedFee.amount = bigNumber(data.moderatorInfo.fee.fixedFee.amount);
160160
}
161161

0 commit comments

Comments
 (0)