Skip to content

Commit

Permalink
fix: faucet bugs (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
andyv09 authored Aug 13, 2024
1 parent c5b74c6 commit 0d895a4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions apps/frontend/src/constants/tokens.testnet.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[
{
"name": "USDC",
"symbol": "USDC",
"decimals": 6,
"assetId": "0xb5a7ec61506d83f6e4739be2dc57018898b1e08684c097c73b582c9583e191e2"
},
{
"name": "Ethereum",
"symbol": "ETH",
"decimals": 9,
"assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07"
},
{
"name": "USDC",
"symbol": "USDC",
"decimals": 6,
"assetId": "0xb5a7ec61506d83f6e4739be2dc57018898b1e08684c097c73b582c9583e191e2"
},
{
"name": "Bitcoin",
"symbol": "BTC",
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/screens/Faucet/TokensFaucetTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const TokensFaucetTable: React.FC<IProps> = () => {
</Column>
),
btn: (() => {
if (!accountStore.isLoggedIn && t.symbol !== 'ETH')
if (!accountStore.isLoggedIn)
return (
<Button
fixed
Expand Down

0 comments on commit 0d895a4

Please sign in to comment.