1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-03 13:22:35 +00:00

Removed eslint disable and fix

This commit is contained in:
Vladimir Volek 2018-12-18 13:21:00 +01:00
parent f9f1b6758e
commit 76fb6a97fa

View File

@ -57,9 +57,7 @@ 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) => {
return (
<Wrapper> <Wrapper>
<Row> <Row>
{props.networkShortcut && <CoinLogoWrapper><StyledCoinLogo standalone network={props.networkShortcut} /></CoinLogoWrapper>} {props.networkShortcut && <CoinLogoWrapper><StyledCoinLogo standalone network={props.networkShortcut} /></CoinLogoWrapper>}
@ -70,7 +68,6 @@ const FirmwareUnsupported = (props: Props) => {
</StyledLink> </StyledLink>
</Row> </Row>
</Wrapper> </Wrapper>
); );
};
export default FirmwareUnsupported; export default FirmwareUnsupported;