Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import KYCWall from '../../../../components/KYCWall';
import {propTypes, defaultProps} from './paymentsPagePropTypes';
import {withNetwork} from '../../../../components/OnyxProvider';
import * as PaymentUtils from '../../../../libs/PaymentUtils';
import OfflineIndicator from '../../../../components/OfflineIndicator';

class BasePaymentsPage extends React.Component {
constructor(props) {
Expand Down Expand Up @@ -435,6 +436,7 @@ class BasePaymentsPage extends React.Component {
shouldShowCancelButton
danger
/>
<OfflineIndicator containerStyles={[styles.ml5, styles.mb2]} />
</KeyboardAvoidingView>
</ScreenWrapper>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/signin/ResendValidationForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class ResendValidationForm extends React.Component {
isDisabled={this.props.network.isOffline}
/>
</View>
<OfflineIndicator />
<OfflineIndicator containerStyles={[styles.mv1]} />
</>
);
}
Expand Down