Skip to content

Commit

Permalink
chore: whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjeatt committed Dec 5, 2024
1 parent fe21b71 commit 143db5d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/evm/src/components/Chain/Chain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ type ChainProps = Props & InheritAttrs;
const Chain = ({ chainId, iconProps, labelProps, ...props }: ChainProps) => (
<StyledFlex alignItems='center' direction='row' gap='s' {...props}>
<ChainLogo chainId={chainId} {...iconProps} />

<StyledSpan {...labelProps}>{chainId === 'BTC' ? 'Bitcoin' : getCapitalizedChainName(chainId)}</StyledSpan>
</StyledFlex>
);
Expand Down

0 comments on commit 143db5d

Please sign in to comment.