1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-27 10:48:22 +00:00

Fixed ecma version and eslint problems

This commit is contained in:
Vladimir Volek 2019-02-05 15:47:04 +01:00
parent 17aa5ff194
commit 613b516e31
7 changed files with 25 additions and 15 deletions

View File

@ -57,8 +57,7 @@
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
"jsx": true
}
}
}

View File

@ -45,7 +45,8 @@ const Tooltip = ({
</Link>
)
}
</ContentWrapper>)}
</ContentWrapper>
)}
>
{children}
</RcTooltip>

View File

@ -127,7 +127,8 @@ class QrModal extends React.Component<Props, State> {
{!this.state.readerLoaded && (
<CameraPlaceholder>
Waiting for camera...
</CameraPlaceholder>)
</CameraPlaceholder>
)
}
</Padding>
<StyledQrReader

View File

@ -68,7 +68,8 @@ const getDeviceContextModal = (props: Props) => {
<Pin
device={modal.device}
onPinSubmit={modalActions.onPinSubmit}
/>);
/>
);
case UI.INVALID_PIN:
return <InvalidPin device={modal.device} />;
@ -79,7 +80,8 @@ const getDeviceContextModal = (props: Props) => {
device={modal.device}
selectedDevice={props.wallet.selectedDevice}
onPassphraseSubmit={modalActions.onPassphraseSubmit}
/>);
/>
);
case 'ButtonRequest_PassphraseType':
return <PassphraseType device={modal.device} />;
@ -110,7 +112,8 @@ const getDeviceContextModal = (props: Props) => {
onCancel={modalActions.onCancel}
showAddress={props.receiveActions.showAddress}
showUnverifiedAddress={props.receiveActions.showUnverifiedAddress}
/>);
/>
);
case CONNECT.REMEMBER_REQUEST:
return (
@ -119,7 +122,8 @@ const getDeviceContextModal = (props: Props) => {
instances={modal.instances}
onRememberDevice={modalActions.onRememberDevice}
onForgetDevice={modalActions.onForgetDevice}
/>);
/>
);
case CONNECT.FORGET_REQUEST:
return (
@ -127,7 +131,8 @@ const getDeviceContextModal = (props: Props) => {
device={modal.device}
onForgetSingleDevice={modalActions.onForgetSingleDevice}
onCancel={modalActions.onCancel}
/>);
/>
);
case CONNECT.TRY_TO_DUPLICATE:
return (
@ -136,7 +141,8 @@ const getDeviceContextModal = (props: Props) => {
devices={props.devices}
onDuplicateDevice={modalActions.onDuplicateDevice}
onCancel={modalActions.onCancel}
/>);
/>
);
case CONNECT.REQUEST_WALLET_TYPE:
return (
@ -144,7 +150,8 @@ const getDeviceContextModal = (props: Props) => {
device={modal.device}
onWalletTypeRequest={modalActions.onWalletTypeRequest}
onCancel={modalActions.onCancel}
/>);
/>
);
default:
return null;

View File

@ -92,8 +92,8 @@ export default (state: State = initialState, action: Action): State => {
case WALLET.CLEAR_UNAVAILABLE_DEVICE_DATA:
return clear(state, action.devices);
//case CONNECT.FORGET_SINGLE :
// return forgetAccounts(state, action);
//case CONNECT.FORGET_SINGLE :
// return forgetAccounts(state, action);
case ACCOUNT.UPDATE:
return updateAccount(state, action.payload);

View File

@ -200,7 +200,8 @@ const AdvancedForm = (props: Props) => {
{ showDefaultGasLimitButton && (
<Right>
<StyledLink onClick={setDefaultGasLimit} isGreen>Set default</StyledLink>
</Right>)
</Right>
)
}
</InputLabelWrapper>
)}

View File

@ -107,7 +107,8 @@ const AccountSummary = (props: Props) => {
size={24}
/>
</StyledTooltip>
</H2Wrapper>)
</H2Wrapper>
)
}
</React.Fragment>
</Content>