aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/PremiumFeatureContainer/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/PremiumFeatureContainer/index.js')
-rw-r--r--src/components/ui/PremiumFeatureContainer/index.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/ui/PremiumFeatureContainer/index.js b/src/components/ui/PremiumFeatureContainer/index.js
index 36bf38c98..1e100f9d8 100644
--- a/src/components/ui/PremiumFeatureContainer/index.js
+++ b/src/components/ui/PremiumFeatureContainer/index.js
@@ -10,6 +10,7 @@ import UserStore from '../../../stores/UserStore';
10 10
11import styles from './styles'; 11import styles from './styles';
12import FeaturesStore from '../../../stores/FeaturesStore'; 12import FeaturesStore from '../../../stores/FeaturesStore';
13import UIStore from '../../../stores/UIStore';
13 14
14const messages = defineMessages({ 15const messages = defineMessages({
15 action: { 16 action: {
@@ -93,9 +94,7 @@ PremiumFeatureContainer.wrappedComponent.propTypes = {
93 features: PropTypes.instanceOf(FeaturesStore).isRequired, 94 features: PropTypes.instanceOf(FeaturesStore).isRequired,
94 }).isRequired, 95 }).isRequired,
95 actions: PropTypes.shape({ 96 actions: PropTypes.shape({
96 ui: PropTypes.shape({ 97 ui: PropTypes.instanceOf(UIStore).isRequired,
97 openSettings: PropTypes.func.isRequired,
98 }).isRequired,
99 }).isRequired, 98 }).isRequired,
100}; 99};
101 100