From 204a80708e6e0a2189de16438a3eb4b57ef84987 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Fri, 1 Oct 2021 21:51:55 +0530 Subject: refactor: split 'environment' into 'environment-remote' with only the remote module dependency (might be a pre-requisite for the electron v14 upgrade) --- src/containers/settings/AccountScreen.js | 2 +- src/containers/settings/RecipesScreen.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/containers') diff --git a/src/containers/settings/AccountScreen.js b/src/containers/settings/AccountScreen.js index 0f9457fd0..1515fc22b 100644 --- a/src/containers/settings/AccountScreen.js +++ b/src/containers/settings/AccountScreen.js @@ -10,7 +10,7 @@ import SettingsStore from '../../stores/SettingsStore'; import AccountDashboard from '../../components/settings/account/AccountDashboard'; import ErrorBoundary from '../../components/util/ErrorBoundary'; import { LIVE_FRANZ_API } from '../../config'; -import { WEBSITE } from '../../environment'; +import { WEBSITE } from '../../environment-remote'; @inject('stores', 'actions') @observer diff --git a/src/containers/settings/RecipesScreen.js b/src/containers/settings/RecipesScreen.js index 162390d57..2e60ceefa 100644 --- a/src/containers/settings/RecipesScreen.js +++ b/src/containers/settings/RecipesScreen.js @@ -12,7 +12,7 @@ import UserStore from '../../stores/UserStore'; import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard'; import ErrorBoundary from '../../components/util/ErrorBoundary'; import { CUSTOM_WEBSITE_RECIPE_ID, FRANZ_DEV_DOCS } from '../../config'; -import { userDataRecipesPath } from '../../environment'; +import { userDataRecipesPath } from '../../environment-remote'; import { asarRecipesPath } from '../../helpers/asar-helpers'; import { communityRecipesStore } from '../../features/communityRecipes'; import RecipePreview from '../../models/RecipePreview'; -- cgit v1.2.3-54-g00ecf