From d06c47a6ddff7b8ad8e408340533a609c3bcdd69 Mon Sep 17 00:00:00 2001 From: vantezzen Date: Mon, 23 Sep 2019 17:15:35 +0200 Subject: Enable community recipes --- src/features/communityRecipes/index.js | 2 +- src/features/communityRecipes/store.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/features/communityRecipes') diff --git a/src/features/communityRecipes/index.js b/src/features/communityRecipes/index.js index 608164b68..553b423f3 100644 --- a/src/features/communityRecipes/index.js +++ b/src/features/communityRecipes/index.js @@ -19,7 +19,7 @@ export default function initCommunityRecipes(stores, actions) { ), (isPremiumFeature) => { debug('Community recipes is premium feature: ', isPremiumFeature); - communityRecipesStore.isCommunityRecipesIncludedInCurrentPlan = isPremiumFeature; + communityRecipesStore.isCommunityRecipesIncludedInCurrentPlan = true; }, { fireImmediately: true, diff --git a/src/features/communityRecipes/store.js b/src/features/communityRecipes/store.js index 6f78999a0..3a60e5449 100644 --- a/src/features/communityRecipes/store.js +++ b/src/features/communityRecipes/store.js @@ -4,7 +4,7 @@ import { FeatureStore } from '../utils/FeatureStore'; const debug = require('debug')('Ferdi:feature:communityRecipes:store'); export class CommunityRecipesStore extends FeatureStore { - @observable isCommunityRecipesIncludedInCurrentPlan = false; + @observable isCommunityRecipesIncludedInCurrentPlan = true; start(stores, actions) { debug('start'); -- cgit v1.2.3-54-g00ecf