aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/TeamScreen.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-10-18 21:08:24 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-10-18 21:08:24 +0200
commit964fdfbc1c937b9e190212c0762d2b1b93e2a38a (patch)
treed3cdd0572f514c4c8406270b27423b2eb8a4bef2 /src/containers/settings/TeamScreen.js
parentAdd info about teams only being availible on Franz servers (diff)
downloadferdium-app-964fdfbc1c937b9e190212c0762d2b1b93e2a38a.tar.gz
ferdium-app-964fdfbc1c937b9e190212c0762d2b1b93e2a38a.tar.zst
ferdium-app-964fdfbc1c937b9e190212c0762d2b1b93e2a38a.zip
Fix lint
Diffstat (limited to 'src/containers/settings/TeamScreen.js')
-rw-r--r--src/containers/settings/TeamScreen.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/containers/settings/TeamScreen.js b/src/containers/settings/TeamScreen.js
index 1172125fe..d0196923a 100644
--- a/src/containers/settings/TeamScreen.js
+++ b/src/containers/settings/TeamScreen.js
@@ -4,6 +4,7 @@ import { inject, observer } from 'mobx-react';
4 4
5import UserStore from '../../stores/UserStore'; 5import UserStore from '../../stores/UserStore';
6import AppStore from '../../stores/AppStore'; 6import AppStore from '../../stores/AppStore';
7import SettingsStore from '../../stores/SettingsStore';
7 8
8import TeamDashboard from '../../components/settings/team/TeamDashboard'; 9import TeamDashboard from '../../components/settings/team/TeamDashboard';
9import ErrorBoundary from '../../components/util/ErrorBoundary'; 10import ErrorBoundary from '../../components/util/ErrorBoundary';
@@ -43,6 +44,7 @@ TeamScreen.wrappedComponent.propTypes = {
43 stores: PropTypes.shape({ 44 stores: PropTypes.shape({
44 user: PropTypes.instanceOf(UserStore).isRequired, 45 user: PropTypes.instanceOf(UserStore).isRequired,
45 app: PropTypes.instanceOf(AppStore).isRequired, 46 app: PropTypes.instanceOf(AppStore).isRequired,
47 settings: PropTypes.instanceOf(SettingsStore).isRequired,
46 }).isRequired, 48 }).isRequired,
47 actions: PropTypes.shape({ 49 actions: PropTypes.shape({
48 payment: PropTypes.shape({ 50 payment: PropTypes.shape({