aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/RecipesScreen.js
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-07-03 07:09:05 +0530
committerLibravatar GitHub <noreply@github.com>2021-07-03 07:09:05 +0530
commit83676cec9ce8e41d5e88e7d06a17dd8194e3593e (patch)
treea73eb8b64a20530ee3c44f1901c9daa2a069f12a /src/containers/settings/RecipesScreen.js
parentUpdate submodules, browserslist data updates and linter fixes [skip ci] (diff)
downloadferdium-app-83676cec9ce8e41d5e88e7d06a17dd8194e3593e.tar.gz
ferdium-app-83676cec9ce8e41d5e88e7d06a17dd8194e3593e.tar.zst
ferdium-app-83676cec9ce8e41d5e88e7d06a17dd8194e3593e.zip
Minor refactoring to move all runtime configs from 'config.js' into 'environment.js'. (#1588)
Diffstat (limited to 'src/containers/settings/RecipesScreen.js')
-rw-r--r--src/containers/settings/RecipesScreen.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/containers/settings/RecipesScreen.js b/src/containers/settings/RecipesScreen.js
index c69a70e2f..117f62ea8 100644
--- a/src/containers/settings/RecipesScreen.js
+++ b/src/containers/settings/RecipesScreen.js
@@ -14,7 +14,8 @@ import UserStore from '../../stores/UserStore';
14 14
15import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard'; 15import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard';
16import ErrorBoundary from '../../components/util/ErrorBoundary'; 16import ErrorBoundary from '../../components/util/ErrorBoundary';
17import { FRANZ_DEV_DOCS, RECIPES_PATH } from '../../config'; 17import { FRANZ_DEV_DOCS } from '../../config';
18import { RECIPES_PATH } from '../../environment';
18import { communityRecipesStore } from '../../features/communityRecipes'; 19import { communityRecipesStore } from '../../features/communityRecipes';
19import RecipePreview from '../../models/RecipePreview'; 20import RecipePreview from '../../models/RecipePreview';
20import AppStore from '../../stores/AppStore'; 21import AppStore from '../../stores/AppStore';