Skip to content

Commit

Permalink
Fix a typo in a variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
csillag committed Jul 6, 2023
1 parent 8bf97dd commit 454e1fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/pages/AccountDetailsPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const AccountDetailsPage: FC = () => {

const scope = useRequiredScopeParam()
const address = useLoaderData() as string
const { account, isLoading: isAcccountLoading, isError } = useAccount(scope, address)
const { account, isLoading: isAccountLoading, isError } = useAccount(scope, address)
const { token, isLoading: isTokenLoading } = useTokenInfo(scope, address)
const { totalCount: numberOfTokenTransfers } = useAccountTokenTransfers(scope, address)

Expand All @@ -42,7 +42,7 @@ export const AccountDetailsPage: FC = () => {
const codeLink = useHref(`code#${contractCodeContainerId}`)

const showDetails = showTxs || showErc20
const isLoading = isAcccountLoading || isTokenLoading
const isLoading = isAccountLoading || isTokenLoading

return (
<PageLayout>
Expand Down

0 comments on commit 454e1fd

Please sign in to comment.