From ef6315761a8bea284b4b3c910fde52fbdeeef123 Mon Sep 17 00:00:00 2001 From: dhairyasenjaliya Date: Sat, 17 Jun 2023 01:11:04 +0530 Subject: [PATCH] OfflineIndicator position bottom with scrollview --- src/pages/ReimbursementAccount/ReimbursementAccountPage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/ReimbursementAccount/ReimbursementAccountPage.js b/src/pages/ReimbursementAccount/ReimbursementAccountPage.js index 74b7ff70cae9..848cf0937d5a 100644 --- a/src/pages/ReimbursementAccount/ReimbursementAccountPage.js +++ b/src/pages/ReimbursementAccount/ReimbursementAccountPage.js @@ -3,7 +3,7 @@ import lodashGet from 'lodash/get'; import React from 'react'; import {withOnyx} from 'react-native-onyx'; import Str from 'expensify-common/lib/str'; -import {View} from 'react-native'; +import {View, ScrollView} from 'react-native'; import PropTypes from 'prop-types'; import ScreenWrapper from '../../components/ScreenWrapper'; import * as BankAccounts from '../../libs/actions/BankAccounts'; @@ -377,7 +377,7 @@ class ReimbursementAccountPage extends React.Component { subtitle={policyName} onBackButtonPress={() => Navigation.goBack(ROUTES.SETTINGS_WORKSPACES)} /> - {errorComponent} + {errorComponent} ); }