diff --git a/src/components/QRShare/QRShareWithDownload/index.js b/src/components/QRShare/QRShareWithDownload/index.js index 8cb7be79f7ad..310122b96d40 100644 --- a/src/components/QRShare/QRShareWithDownload/index.js +++ b/src/components/QRShare/QRShareWithDownload/index.js @@ -1,6 +1,6 @@ import React, {Component} from 'react'; import fileDownload from '../../../libs/fileDownload'; -import QRShare from '..' +import QRShare from '..'; import {qrShareDefaultProps, qrSharePropTypes} from '../propTypes'; import getQrCodeFileName from '../getQrCodeDownloadFileName'; diff --git a/src/components/QRShare/QRShareWithDownload/index.native.js b/src/components/QRShare/QRShareWithDownload/index.native.js index 27f05038733a..6154b8137bf3 100644 --- a/src/components/QRShare/QRShareWithDownload/index.native.js +++ b/src/components/QRShare/QRShareWithDownload/index.native.js @@ -1,11 +1,10 @@ import React, {Component} from 'react'; import ViewShot from 'react-native-view-shot'; import fileDownload from '../../../libs/fileDownload'; -import QRShare from '..' +import QRShare from '..'; import {qrShareDefaultProps, qrSharePropTypes} from '../propTypes'; import getQrCodeFileName from '../getQrCodeDownloadFileName'; - class QRShareWithDownload extends Component { qrCodeScreenshotRef = React.createRef(); diff --git a/src/components/QRShare/index.js b/src/components/QRShare/index.js index 014cddcf5090..8676432208a1 100644 --- a/src/components/QRShare/index.js +++ b/src/components/QRShare/index.js @@ -9,7 +9,7 @@ import withWindowDimensions, {windowDimensionsPropTypes} from '../withWindowDime import compose from '../../libs/compose'; import variables from '../../styles/variables'; import ExpensifyWordmark from '../../../assets/images/expensify-wordmark.svg'; -import {qrSharePropTypes, qrShareDefaultProps} from './propTypes' +import {qrSharePropTypes, qrShareDefaultProps} from './propTypes'; const propTypes = { ...qrSharePropTypes, diff --git a/src/pages/ReimbursementAccount/BankAccountManualStep.js b/src/pages/ReimbursementAccount/BankAccountManualStep.js index 02da681858cc..0cb6a706abf8 100644 --- a/src/pages/ReimbursementAccount/BankAccountManualStep.js +++ b/src/pages/ReimbursementAccount/BankAccountManualStep.js @@ -117,11 +117,7 @@ class BankAccountManualStep extends React.Component { LabelComponent={() => ( {this.props.translate('common.iAcceptThe')} - - {this.props.translate('common.expensifyTermsOfService')} - + {this.props.translate('common.expensifyTermsOfService')} )} defaultValue={this.props.getDefaultStateForField('acceptTerms', false)} diff --git a/src/pages/ReimbursementAccount/BankAccountPlaidStep.js b/src/pages/ReimbursementAccount/BankAccountPlaidStep.js index d4f505720a95..aade78afd54a 100644 --- a/src/pages/ReimbursementAccount/BankAccountPlaidStep.js +++ b/src/pages/ReimbursementAccount/BankAccountPlaidStep.js @@ -116,24 +116,20 @@ class BankAccountPlaidStep extends React.Component { bankAccountID={bankAccountID} selectedPlaidAccountID={selectedPlaidAccountID} /> - {Boolean(selectedPlaidAccountID) && !_.isEmpty(lodashGet(this.props.plaidData, 'bankAccounts')) && + {Boolean(selectedPlaidAccountID) && !_.isEmpty(lodashGet(this.props.plaidData, 'bankAccounts')) && ( ( {this.props.translate('common.iAcceptThe')} - - {this.props.translate('common.expensifyTermsOfService')} - + {this.props.translate('common.expensifyTermsOfService')} )} defaultValue={this.props.getDefaultStateForField('acceptTerms', false)} shouldSaveDraft /> - } + )} );