aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/RecipesScreen.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-07 15:50:39 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-07 15:50:39 +0200
commitca7153dd6aac2983b02db3fa78d8021e76fc466a (patch)
tree3912542559837afa696b7f0fa3e4b10aff931b48 /src/containers/settings/RecipesScreen.js
parentMerge branch 'master' of https://github.com/meetfranz/franz into franz-5.3.0 (diff)
downloadferdium-app-ca7153dd6aac2983b02db3fa78d8021e76fc466a.tar.gz
ferdium-app-ca7153dd6aac2983b02db3fa78d8021e76fc466a.tar.zst
ferdium-app-ca7153dd6aac2983b02db3fa78d8021e76fc466a.zip
Remove analytics
Diffstat (limited to 'src/containers/settings/RecipesScreen.js')
-rw-r--r--src/containers/settings/RecipesScreen.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/containers/settings/RecipesScreen.js b/src/containers/settings/RecipesScreen.js
index 132820b6f..692dc26f1 100644
--- a/src/containers/settings/RecipesScreen.js
+++ b/src/containers/settings/RecipesScreen.js
@@ -13,7 +13,6 @@ import UserStore from '../../stores/UserStore';
13import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard'; 13import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard';
14import ErrorBoundary from '../../components/util/ErrorBoundary'; 14import ErrorBoundary from '../../components/util/ErrorBoundary';
15import { FRANZ_DEV_DOCS } from '../../config'; 15import { FRANZ_DEV_DOCS } from '../../config';
16import { gaEvent } from '../../lib/analytics';
17import { communityRecipesStore } from '../../features/communityRecipes'; 16import { communityRecipesStore } from '../../features/communityRecipes';
18 17
19const { app } = remote; 18const { app } = remote;
@@ -122,11 +121,9 @@ export default @inject('stores', 'actions') @observer class RecipesScreen extend
122 recipeDirectory={recipeDirectory} 121 recipeDirectory={recipeDirectory}
123 openRecipeDirectory={() => { 122 openRecipeDirectory={() => {
124 shell.openItem(recipeDirectory); 123 shell.openItem(recipeDirectory);
125 gaEvent('Recipe', 'open-recipe-folder', 'Open Folder');
126 }} 124 }}
127 openDevDocs={() => { 125 openDevDocs={() => {
128 appActions.openExternalUrl({ url: FRANZ_DEV_DOCS }); 126 appActions.openExternalUrl({ url: FRANZ_DEV_DOCS });
129 gaEvent('Recipe', 'open-dev-docs', 'Developer Documentation');
130 }} 127 }}
131 isCommunityRecipesIncludedInCurrentPlan={communityRecipesStore.isCommunityRecipesIncludedInCurrentPlan} 128 isCommunityRecipesIncludedInCurrentPlan={communityRecipesStore.isCommunityRecipesIncludedInCurrentPlan}
132 isUserPremiumUser={user.isPremium} 129 isUserPremiumUser={user.isPremium}