mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-03 05:12:40 +00:00
Removed eslint disable and fix
This commit is contained in:
parent
f9f1b6758e
commit
76fb6a97fa
@ -57,20 +57,17 @@ const Message = styled.div`
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
// eslint-disable-next-line arrow-body-style
|
const FirmwareUnsupported = (props: Props) => (
|
||||||
const FirmwareUnsupported = (props: Props) => {
|
<Wrapper>
|
||||||
return (
|
<Row>
|
||||||
<Wrapper>
|
{props.networkShortcut && <CoinLogoWrapper><StyledCoinLogo standalone network={props.networkShortcut} /></CoinLogoWrapper>}
|
||||||
<Row>
|
<H2>{props.title}</H2>
|
||||||
{props.networkShortcut && <CoinLogoWrapper><StyledCoinLogo standalone network={props.networkShortcut} /></CoinLogoWrapper>}
|
<Message>{props.message}</Message>
|
||||||
<H2>{props.title}</H2>
|
<StyledLink href={getInfoUrl(props.networkShortcut)}>
|
||||||
<Message>{props.message}</Message>
|
<Button>Find out more info</Button>
|
||||||
<StyledLink href={getInfoUrl(props.networkShortcut)}>
|
</StyledLink>
|
||||||
<Button>Find out more info</Button>
|
</Row>
|
||||||
</StyledLink>
|
</Wrapper>
|
||||||
</Row>
|
);
|
||||||
</Wrapper>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default FirmwareUnsupported;
|
export default FirmwareUnsupported;
|
||||||
|
Loading…
Reference in New Issue
Block a user