Skip to content

Commit

Permalink
Fix some styles
Browse files Browse the repository at this point in the history
  • Loading branch information
MonilBhavsar committed Nov 8, 2022
1 parent 55d60d5 commit 534d276
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/ReimbursementAccount/ValidationStep.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import lodashGet from 'lodash/get';
import React from 'react';
import {View} from 'react-native';
import {ScrollView, View} from 'react-native';
import {withOnyx} from 'react-native-onyx';
import Str from 'expensify-common/lib/str';
import _ from 'underscore';
import PropTypes from 'prop-types';
import styles from '../../styles/styles';
import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize';
import * as BankAccounts from '../../libs/actions/BankAccounts';
Expand All @@ -27,7 +28,6 @@ import CONST from '../../CONST';
import Button from '../../components/Button';
import MenuItem from '../../components/MenuItem';
import Enable2FAPrompt from './Enable2FAPrompt';
import PropTypes from 'prop-types';

const propTypes = {
...withLocalizePropTypes,
Expand Down Expand Up @@ -171,7 +171,7 @@ class ValidationStep extends React.Component {
{this.props.translate('validationStep.descriptionCTA')}
</Text>
</View>
<View style={[styles.mv5, styles.flex1]}>
<View style={[styles.mv5]}>
<TextInput
inputID="amount1"
shouldSaveDraft
Expand Down Expand Up @@ -202,7 +202,7 @@ class ValidationStep extends React.Component {
</Form>
)}
{isVerifying && (
<View style={[styles.flex1]}>
<ScrollView style={[styles.flex1]}>
<Section
title={this.props.translate('workspace.bankAccount.letsFinishInChat')}
icon={Illustrations.ConciergeBlue}
Expand Down Expand Up @@ -230,7 +230,7 @@ class ValidationStep extends React.Component {
{!requiresTwoFactorAuth && (
<Enable2FAPrompt />
)}
</View>
</ScrollView>
)}
</View>
);
Expand Down

0 comments on commit 534d276

Please sign in to comment.