diff --git a/src/pages/RequestCallPage.js b/src/pages/RequestCallPage.js
index 3b491d6f4821..5a1ea5eb0e55 100644
--- a/src/pages/RequestCallPage.js
+++ b/src/pages/RequestCallPage.js
@@ -1,5 +1,5 @@
import React, {Component} from 'react';
-import {View, TextInput} from 'react-native';
+import {ScrollView, TextInput} from 'react-native';
import _ from 'underscore';
import {withOnyx} from 'react-native-onyx';
import PropTypes from 'prop-types';
@@ -20,6 +20,7 @@ import {requestConciergeDMCall} from '../libs/actions/Inbox';
import {fetchOrCreateChatReport} from '../libs/actions/Report';
import personalDetailsPropType from './personalDetailsPropType';
import Text from '../components/Text';
+import KeyboardAvoidingView from '../components/KeyboardAvoidingView';
const propTypes = {
...withLocalizePropTypes,
@@ -143,54 +144,56 @@ class RequestCallPage extends Component {
const isButtonDisabled = false;
return (
- fetchOrCreateChatReport([
- this.props.session.email,
- CONST.EMAIL.CONCIERGE,
- ], true)}
- onCloseButtonPress={() => Navigation.dismissModal(true)}
- />
-
-
- {this.props.translate('requestCallPage.description')}
-
-
- {this.props.translate('requestCallPage.instructions')}
-
- this.setState({firstName})}
- onChangeLastName={lastName => this.setState({lastName})}
- style={[styles.mt4, styles.mb4]}
+
+ fetchOrCreateChatReport([
+ this.props.session.email,
+ CONST.EMAIL.CONCIERGE,
+ ], true)}
+ onCloseButtonPress={() => Navigation.dismissModal(true)}
/>
-
- {this.props.translate('common.phoneNumber')}
-
- this.setState({phoneNumber})}
- />
-
- {this.props.translate('requestCallPage.availabilityText')}
-
-
-
-
-
+
+
+ {this.props.translate('requestCallPage.description')}
+
+
+ {this.props.translate('requestCallPage.instructions')}
+
+ this.setState({firstName})}
+ onChangeLastName={lastName => this.setState({lastName})}
+ style={[styles.mt4, styles.mb4]}
+ />
+
+ {this.props.translate('common.phoneNumber')}
+
+ this.setState({phoneNumber})}
+ />
+
+ {this.props.translate('requestCallPage.availabilityText')}
+
+
+
+
+
+
);
}
diff --git a/src/pages/workspace/WorkspaceInvitePage.js b/src/pages/workspace/WorkspaceInvitePage.js
index 8a6e47a66203..4952d37ba472 100644
--- a/src/pages/workspace/WorkspaceInvitePage.js
+++ b/src/pages/workspace/WorkspaceInvitePage.js
@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
-import {ScrollView, TextInput, View} from 'react-native';
+import {TextInput, View, ScrollView} from 'react-native';
import {withOnyx} from 'react-native-onyx';
import Str from 'expensify-common/lib/str';
import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize';
@@ -17,8 +17,8 @@ import TextLink from '../../components/TextLink';
import getEmailKeyboardType from '../../libs/getEmailKeyboardType';
import themeColors from '../../styles/themes/default';
import Growl from '../../libs/Growl';
-import KeyboardAvoidingView from '../../components/KeyboardAvoidingView';
import FixedFooter from '../../components/FixedFooter';
+import KeyboardAvoidingView from '../../components/KeyboardAvoidingView';
const propTypes = {
...withLocalizePropTypes,
@@ -90,51 +90,48 @@ class WorkspaceInvitePage extends React.Component {
title={this.props.translate('workspace.invite.invitePeople')}
onCloseButtonPress={Navigation.dismissModal}
/>
-
-
-
- {this.props.translate('workspace.invite.invitePeoplePrompt')}
+
+
+ {this.props.translate('workspace.invite.invitePeoplePrompt')}
+
+
+
+ {this.props.translate('workspace.invite.enterEmailOrPhone')}
+
+ this.setState({emailOrPhone: text})}
+ />
+
+
+
+ {this.props.translate('workspace.invite.personalMessagePrompt')}
-
-
- {this.props.translate('workspace.invite.enterEmailOrPhone')}
-
- this.setState({emailOrPhone: text})}
- />
-
-
-
- {this.props.translate('workspace.invite.personalMessagePrompt')}
-
- this.setState({welcomeNote: text})}
- />
-
- {this.props.translate('common.privacy')}
-
-
+ this.setState({welcomeNote: text})}
+ />
+
+ {this.props.translate('common.privacy')}
+