Skip to content

Commit

Permalink
Move balance section
Browse files Browse the repository at this point in the history
  • Loading branch information
chasefleming committed Feb 26, 2024
1 parent c52b597 commit 2d42e2b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions components/FundAccountSubmitted.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ access(all) fun main(account: Address): UFix64 {
result.token
} tokens`}
</div>
{publicConfig.network === "testnet" ? (
{publicConfig.network === "testnet" &&

Check failure on line 119 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Insert `·(`
<Link
href={`https://${publicConfig.network}.flowdiver.io/account/${result.address}`}
target="_blank"
Expand All @@ -125,17 +125,18 @@ access(all) fun main(account: Address): UFix64 {
>
View Account
</Link>
) : (
}

Check failure on line 128 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Insert `)`
</Flex>
{publicConfig.network === "previewnet" &&

Check failure on line 130 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Replace `⏎··` with `·(⏎`
<>
<label>Balance</label>

Check failure on line 132 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Replace `····················` with `··················`
{isFetchingBalance ? (

Check failure on line 133 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Delete `··`
<div>Fetching...</div>
<div>Fetching...</div>

Check failure on line 134 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Replace `························` with `····················`
) : (

Check failure on line 135 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Delete `··`
<div>{balance}</div>
<div>{balance}</div>

Check failure on line 136 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Replace `························` with `····················`
)}

Check failure on line 137 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Delete `··`
</>

Check failure on line 138 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

Delete `··`
)}
</Flex>
}
</Box>
</>
)}
Expand Down

0 comments on commit 2d42e2b

Please sign in to comment.