1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-11 16:41:06 +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;
`;
// eslint-disable-next-line arrow-body-style
const FirmwareUnsupported = (props: Props) => {
return (
const FirmwareUnsupported = (props: Props) => (
<Wrapper>
<Row>
{props.networkShortcut && <CoinLogoWrapper><StyledCoinLogo standalone network={props.networkShortcut} /></CoinLogoWrapper>}
@ -71,6 +69,5 @@ const FirmwareUnsupported = (props: Props) => {
</Row>
</Wrapper>
);
};
export default FirmwareUnsupported;