Skip to content

Commit

Permalink
Run lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chasefleming committed Feb 26, 2024
1 parent 2d42e2b commit 732685b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions components/FundAccountSubmitted.tsx
Expand Up @@ -116,7 +116,7 @@ access(all) fun main(account: Address): UFix64 {
result.token
} tokens`}
</div>
{publicConfig.network === "testnet" &&
{publicConfig.network === "testnet" && (
<Link
href={`https://${publicConfig.network}.flowdiver.io/account/${result.address}`}
target="_blank"
Expand All @@ -125,18 +125,18 @@ access(all) fun main(account: Address): UFix64 {
>
View Account
</Link>
}
)}
</Flex>
{publicConfig.network === "previewnet" &&
<>
<label>Balance</label>
{isFetchingBalance ? (
<div>Fetching...</div>
) : (
<div>{balance}</div>
)}
</>
}
{publicConfig.network === "previewnet" && (
<>
<label>Balance</label>
{isFetchingBalance ? (
<div>Fetching...</div>
) : (
<div>{balance}</div>
)}
</>
)}
</Box>
</>
)}
Expand Down

0 comments on commit 732685b

Please sign in to comment.