aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-10-27 14:53:05 +0100
committerLibravatar vantezzen <hello@vantezzen.io>2019-10-27 14:53:05 +0100
commit5ad3984ee630f262d71eee570dedf25cf3d28797 (patch)
tree5e5ebd95a725ac6934bc76834948bd3ae832e5b5 /src/components/ui
parentUse absolute file path to preload recipe (diff)
downloadferdium-app-5ad3984ee630f262d71eee570dedf25cf3d28797.tar.gz
ferdium-app-5ad3984ee630f262d71eee570dedf25cf3d28797.tar.zst
ferdium-app-5ad3984ee630f262d71eee570dedf25cf3d28797.zip
Fix incorrect prop type for plan prop
Diffstat (limited to 'src/components/ui')
-rw-r--r--src/components/ui/FeatureList.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ui/FeatureList.js b/src/components/ui/FeatureList.js
index 7ba8b54d7..f1039709c 100644
--- a/src/components/ui/FeatureList.js
+++ b/src/components/ui/FeatureList.js
@@ -72,7 +72,7 @@ export class FeatureList extends Component {
72 static propTypes = { 72 static propTypes = {
73 className: PropTypes.string, 73 className: PropTypes.string,
74 featureClassName: PropTypes.string, 74 featureClassName: PropTypes.string,
75 plan: PropTypes.oneOf(PLANS), 75 plan: PropTypes.oneOf(Object.values(PLANS)),
76 }; 76 };
77 77
78 static defaultProps = { 78 static defaultProps = {