diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/components/Connect.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/components/Connect.js b/app/components/Connect.js index 56defe49b7..79d14df743 100644 --- a/app/components/Connect.js +++ b/app/components/Connect.js @@ -80,10 +80,10 @@ export default class Connect extends Component<ConnectProps, ConnectState> { renderError(error: BackendError) { return ( <View style={styles.connect}> + <View style={styles.status_icon}> + <Img source="icon-fail" height={60} width={60} alt="" /> + </View> <View style={styles.status}> - <View style={styles.status_icon}> - <Img source="icon-fail" height={60} width={60} alt="" /> - </View> <View style={styles.error_title}> { error.title } </View> @@ -344,4 +344,4 @@ function shallowCompare(lhs: Object, rhs: Object) { keys.length === Object.keys(rhs).length && keys.every(key => lhs[key] === rhs[key]) ); -}
\ No newline at end of file +} |
