Browse Source

Merge pull request #8 from Skidragon/fix/new-user-balance

Fix/new user balance
feature/buyorders^2
Phillip 2 months ago committed by GitHub
parent
commit
6de8a75d56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/App.tsx

2
src/App.tsx

@ -655,7 +655,7 @@ function App() {
</AddressBox>
</CopyToClipboard>
<Spacer height="10px" />
{balance && (
{(balance >= 0) && (
<TextP
sx={{
textAlign: "center",

Loading…
Cancel
Save