Skip to content

Commit

Permalink
Merge pull request #3 from zekraken-bot/develop
Browse files Browse the repository at this point in the history
update float
  • Loading branch information
zekraken-bot authored Sep 15, 2023
2 parents 8b64a05 + c86740f commit 6bbfac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function App() {
<tr key={index}>
<td>{name}</td>
<td>{data.count}</td>
<td>{data.ethAmount}</td>
<td>{parseFloat(data.ethAmount).toFixed(6)}</td>
</tr>
))}
</tbody>
Expand All @@ -132,7 +132,7 @@ function App() {
<tr key={index}>
<td>{trader}</td>
<td>{data2.count}</td>
<td>{data2.ethAmount}</td>
<td>{parseFloat(data2.ethAmount).toFixed(6)}</td>
</tr>
))}
</tbody>
Expand Down

0 comments on commit 6bbfac9

Please sign in to comment.