Skip to content

Commit af8786e

Browse files
authored
Merge pull request #77 from osiastedian/ci-master-build
fix: unused import
2 parents dbc31c3 + cc27f2b commit af8786e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/stats/StatsShow.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React, { Component } from "react";
22
import { withTranslation } from "react-i18next";
3-
import prettyMilliseconds from "pretty-ms";
43

54
/**
65
* Component to show the stats data
@@ -79,7 +78,9 @@ class StatsShow extends Component {
7978
</div>
8079
<div className="stat">
8180
Reward elegibility
82-
<div className="stat-data">{statsData.mn_stats.reward_eligble}</div>
81+
<div className="stat-data">
82+
{statsData.mn_stats.reward_eligble}
83+
</div>
8384
</div>
8485
<div className="stat">
8586
SentryNodes

0 commit comments

Comments
 (0)