aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/RecipesScreen.tsx
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-07-04 12:51:44 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-07-04 13:08:32 +0530
commit91cc78009cf57ad8f53e69d20aa974f4833e61b0 (patch)
tree10a4e397734d7ac1c70dd9acbe86108a5344ed7f /src/containers/settings/RecipesScreen.tsx
parentDisable symlinks to build_id for rpm (diff)
downloadferdium-app-91cc78009cf57ad8f53e69d20aa974f4833e61b0.tar.gz
ferdium-app-91cc78009cf57ad8f53e69d20aa974f4833e61b0.tar.zst
ferdium-app-91cc78009cf57ad8f53e69d20aa974f4833e61b0.zip
chore: Use relative paths while importing from custom code
Diffstat (limited to 'src/containers/settings/RecipesScreen.tsx')
-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 c50ff246e..bc7fa9ba0 100644
--- a/src/containers/settings/RecipesScreen.tsx
+++ b/src/containers/settings/RecipesScreen.tsx
@@ -3,8 +3,8 @@ import { Component, ReactElement } from 'react';
3import { autorun, IReactionDisposer } from 'mobx'; 3import { autorun, IReactionDisposer } from 'mobx';
4import { inject, observer } from 'mobx-react'; 4import { inject, observer } from 'mobx-react';
5 5
6import { StoresProps } from 'src/@types/ferdium-components.types'; 6import Recipe from '../../models/Recipe';
7import Recipe from 'src/models/Recipe'; 7import { StoresProps } from '../../@types/ferdium-components.types';
8import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard'; 8import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard';
9import ErrorBoundary from '../../components/util/ErrorBoundary'; 9import ErrorBoundary from '../../components/util/ErrorBoundary';
10import { CUSTOM_WEBSITE_RECIPE_ID, FRANZ_DEV_DOCS } from '../../config'; 10import { CUSTOM_WEBSITE_RECIPE_ID, FRANZ_DEV_DOCS } from '../../config';