From f9cf9090fe46f300bace6cca06420930f5ace690 Mon Sep 17 00:00:00 2001 From: Nikki Wines Date: Wed, 27 Jul 2022 11:18:22 -0700 Subject: [PATCH] add offline indicator to basePaymentspage update offline indicator styles for resend validation page --- src/pages/settings/Payments/PaymentsPage/BasePaymentsPage.js | 2 ++ src/pages/signin/ResendValidationForm.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/settings/Payments/PaymentsPage/BasePaymentsPage.js b/src/pages/settings/Payments/PaymentsPage/BasePaymentsPage.js index 779d5521732a..ad37bf614aa5 100644 --- a/src/pages/settings/Payments/PaymentsPage/BasePaymentsPage.js +++ b/src/pages/settings/Payments/PaymentsPage/BasePaymentsPage.js @@ -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) { @@ -436,6 +437,7 @@ class BasePaymentsPage extends React.Component { danger /> + ); } diff --git a/src/pages/signin/ResendValidationForm.js b/src/pages/signin/ResendValidationForm.js index 6d55b4683898..95956cb7b933 100755 --- a/src/pages/signin/ResendValidationForm.js +++ b/src/pages/signin/ResendValidationForm.js @@ -152,7 +152,7 @@ class ResendValidationForm extends React.Component { isDisabled={this.props.network.isOffline} /> - + ); }