diff --git a/App/Screens/ErrorScreen/ErrorScreen.js b/App/Screens/ErrorScreen/ErrorScreen.js index 8e2a222b..6b80e62c 100644 --- a/App/Screens/ErrorScreen/ErrorScreen.js +++ b/App/Screens/ErrorScreen/ErrorScreen.js @@ -56,7 +56,6 @@ const styles = StyleSheet.create({ }, errorMessage: { ...theme.text, - fontFamily: 'Courier', fontSize: 10, marginTop: theme.spacing.small }, diff --git a/App/Screens/Home/SmokeVideo/SmokeVideo.js b/App/Screens/Home/SmokeVideo/SmokeVideo.js index 9fec5622..2c1c6005 100644 --- a/App/Screens/Home/SmokeVideo/SmokeVideo.js +++ b/App/Screens/Home/SmokeVideo/SmokeVideo.js @@ -37,6 +37,7 @@ export class SmokeVideo extends Component { const styles = StyleSheet.create({ video: { + backgroundColor: 'white', bottom: 0, height: Dimensions.get('screen').height, position: 'absolute', diff --git a/App/Screens/Screens.js b/App/Screens/Screens.js index 02e65d9d..c80e2755 100644 --- a/App/Screens/Screens.js +++ b/App/Screens/Screens.js @@ -68,10 +68,6 @@ const ErrorStack = createAppContainer( @inject('stores') @observer export class Screens extends Component { - state = { - showVideo: true // Showing video or not - }; - componentDidCatch (error) { this.props.stores.setError(error.message); }