Commit f834af69 authored by Brendan Wong's avatar Brendan Wong Committed by GitHub

fix: Trust wallet loading state (#6694)

parent 08cd4bec
...@@ -96,7 +96,7 @@ export default function ChainSelectorRow({ disabled, targetChain, onSelectChain, ...@@ -96,7 +96,7 @@ export default function ChainSelectorRow({ disabled, targetChain, onSelectChain,
)} )}
<Status> <Status>
{active && <CheckMarkIcon width={LOGO_SIZE} height={LOGO_SIZE} color={theme.accentActive} />} {active && <CheckMarkIcon width={LOGO_SIZE} height={LOGO_SIZE} color={theme.accentActive} />}
{isPending && <Loader width={LOGO_SIZE} height={LOGO_SIZE} />} {!active && isPending && <Loader width={LOGO_SIZE} height={LOGO_SIZE} />}
</Status> </Status>
</Container> </Container>
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment