Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit 97f1a3b

Browse files
committed
lintfix
1 parent 411e434 commit 97f1a3b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

ts/pages/staking/staking_pool.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,12 @@ export const StakingPool: React.FC<StakingPoolProps & RouteChildrenProps> = (pro
106106
return <Redirect to={WebsitePaths.Staking} />;
107107
}
108108

109-
let currentEpoch: EpochPoolStats,
110-
nextEpoch,
111-
historicalEpochs,
112-
zrxStakeChangeBetweenEpochs: number,
113-
zrxToStaked = null;
109+
let currentEpoch: EpochPoolStats = null;
110+
let nextEpoch = null;
111+
let historicalEpochs = null;
112+
let zrxStakeChangeBetweenEpochs: number = null;
113+
let zrxToStaked = null;
114+
114115
if (stakingPool) {
115116
currentEpoch = stakingPool.currentEpochStats;
116117
nextEpoch = stakingPool.nextEpochStats;

0 commit comments

Comments
 (0)