MM-19853 Fix iOS SafeAreaView for Server URL screen (#3513)

This commit is contained in:
Elias Nahum 2019-11-04 18:59:23 -03:00 committed by Miguel Alatzar
parent 9708fb583c
commit 11ddd66809
2 changed files with 2 additions and 19 deletions

View file

@ -73,22 +73,6 @@ const state = {
},
},
general: {
server: {
status: 'not_started',
error: null,
},
config: {
status: 'not_started',
error: null,
},
dataRetentionPolicy: {
status: 'not_started',
error: null,
},
license: {
status: 'not_started',
error: null,
},
websocket: {
status: 'not_started',
error: null,

View file

@ -12,6 +12,7 @@ import {
Keyboard,
KeyboardAvoidingView,
Platform,
SafeAreaView,
StatusBar,
StyleSheet,
Text,
@ -28,7 +29,6 @@ import {Client4} from 'mattermost-redux/client';
import ErrorText from 'app/components/error_text';
import FormattedText from 'app/components/formatted_text';
import SafeAreaView from 'app/components/safe_area_view';
import fetchConfig from 'app/init/fetch';
import mattermostBucket from 'app/mattermost_bucket';
import {GlobalStyles} from 'app/styles';
@ -416,8 +416,7 @@ export default class SelectServer extends PureComponent {
return (
<SafeAreaView
excludeHeader={true}
useLandscapeMargin={true}
style={style.container}
>
<KeyboardAvoidingView
behavior='padding'