Skip to content

Commit 0079ed3

Browse files
committed
GAS display is afactor of 10 off
1 parent 6b30bfe commit 0079ed3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/panel/components/tracker/AddressDetails.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function AddressDetails({
3636
<small>GAS balance:</small>
3737
</p>
3838
<p style={{ fontWeight: "bold", fontSize: "1.25rem" }}>
39-
{(addressInfo.gasBalance / 1000000000.0).toLocaleString()} GAS
39+
{(addressInfo.gasBalance / 100000000.0).toLocaleString()} GAS
4040
</p>
4141
</div>
4242
);

0 commit comments

Comments
 (0)