summaryrefslogtreecommitdiffstats
path: root/src/components/layout/AppLayout.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/layout/AppLayout.js')
-rw-r--r--src/components/layout/AppLayout.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/components/layout/AppLayout.js b/src/components/layout/AppLayout.js
index 00d7a759b..e6e5d40fe 100644
--- a/src/components/layout/AppLayout.js
+++ b/src/components/layout/AppLayout.js
@@ -76,7 +76,6 @@ class AppLayout extends Component {
76 news: MobxPropTypes.arrayOrObservableArray.isRequired, 76 news: MobxPropTypes.arrayOrObservableArray.isRequired,
77 showServicesUpdatedInfoBar: PropTypes.bool.isRequired, 77 showServicesUpdatedInfoBar: PropTypes.bool.isRequired,
78 appUpdateIsDownloaded: PropTypes.bool.isRequired, 78 appUpdateIsDownloaded: PropTypes.bool.isRequired,
79 nextAppReleaseVersion: PropTypes.string,
80 authRequestFailed: PropTypes.bool.isRequired, 79 authRequestFailed: PropTypes.bool.isRequired,
81 removeNewsItem: PropTypes.func.isRequired, 80 removeNewsItem: PropTypes.func.isRequired,
82 reloadServicesAfterUpdate: PropTypes.func.isRequired, 81 reloadServicesAfterUpdate: PropTypes.func.isRequired,
@@ -93,7 +92,6 @@ class AppLayout extends Component {
93 92
94 static defaultProps = { 93 static defaultProps = {
95 children: [], 94 children: [],
96 nextAppReleaseVersion: null,
97 }; 95 };
98 96
99 static contextTypes = { 97 static contextTypes = {
@@ -111,7 +109,6 @@ class AppLayout extends Component {
111 news, 109 news,
112 showServicesUpdatedInfoBar, 110 showServicesUpdatedInfoBar,
113 appUpdateIsDownloaded, 111 appUpdateIsDownloaded,
114 nextAppReleaseVersion,
115 authRequestFailed, 112 authRequestFailed,
116 removeNewsItem, 113 removeNewsItem,
117 reloadServicesAfterUpdate, 114 reloadServicesAfterUpdate,
@@ -195,7 +192,6 @@ class AppLayout extends Component {
195 )} 192 )}
196 {appUpdateIsDownloaded && this.state.shouldShowAppUpdateInfoBar && ( 193 {appUpdateIsDownloaded && this.state.shouldShowAppUpdateInfoBar && (
197 <AppUpdateInfoBar 194 <AppUpdateInfoBar
198 nextAppReleaseVersion={nextAppReleaseVersion}
199 onInstallUpdate={installAppUpdate} 195 onInstallUpdate={installAppUpdate}
200 onHide={() => { 196 onHide={() => {
201 this.setState({ shouldShowAppUpdateInfoBar: false }); 197 this.setState({ shouldShowAppUpdateInfoBar: false });