aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-12-21 17:56:59 -0700
committerLibravatar GitHub <noreply@github.com>2023-12-21 17:56:59 -0700
commitf57062fd35dfb069105134fb5de45dd4cd223b35 (patch)
tree86045808f7f286e8fa65c7c85ed1474f92e0c06b /src/containers
parent6.6.1-nightly.23 [skip ci] (diff)
downloadferdium-app-f57062fd35dfb069105134fb5de45dd4cd223b35.tar.gz
ferdium-app-f57062fd35dfb069105134fb5de45dd4cd223b35.tar.zst
ferdium-app-f57062fd35dfb069105134fb5de45dd4cd223b35.zip
fix: custom services developer documentation link leads to franz pape (#1493)
- update link for developer documentation to point to own recipe documentation - rename `FRANZ_DEV_DOCS` to `FERDIUM_DEV_DOCS`
Diffstat (limited to 'src/containers')
-rw-r--r--src/containers/settings/RecipesScreen.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/containers/settings/RecipesScreen.tsx b/src/containers/settings/RecipesScreen.tsx
index 1fb2673a8..a46510d54 100644
--- a/src/containers/settings/RecipesScreen.tsx
+++ b/src/containers/settings/RecipesScreen.tsx
@@ -8,7 +8,7 @@ import Recipe from '../../models/Recipe';
8import { StoresProps } from '../../@types/ferdium-components.types'; 8import { StoresProps } from '../../@types/ferdium-components.types';
9import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard'; 9import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard';
10import ErrorBoundary from '../../components/util/ErrorBoundary'; 10import ErrorBoundary from '../../components/util/ErrorBoundary';
11import { CUSTOM_WEBSITE_RECIPE_ID, FRANZ_DEV_DOCS } from '../../config'; 11import { CUSTOM_WEBSITE_RECIPE_ID, FERDIUM_DEV_DOCS } from '../../config';
12import { userDataRecipesPath } from '../../environment-remote'; 12import { userDataRecipesPath } from '../../environment-remote';
13import { asarRecipesPath } from '../../helpers/asar-helpers'; 13import { asarRecipesPath } from '../../helpers/asar-helpers';
14import { communityRecipesStore } from '../../features/communityRecipes'; 14import { communityRecipesStore } from '../../features/communityRecipes';
@@ -176,7 +176,7 @@ class RecipesScreen extends Component<IProps, IState> {
176 recipeDirectory={recipeDirectory} 176 recipeDirectory={recipeDirectory}
177 openRecipeDirectory={() => openPath(recipeDirectory)} 177 openRecipeDirectory={() => openPath(recipeDirectory)}
178 openDevDocs={() => 178 openDevDocs={() =>
179 appActions.openExternalUrl({ url: FRANZ_DEV_DOCS }) 179 appActions.openExternalUrl({ url: FERDIUM_DEV_DOCS })
180 } 180 }
181 /> 181 />
182 </ErrorBoundary> 182 </ErrorBoundary>