aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/RecipePreviewsStore.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-03-22 02:33:33 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-03-21 21:24:35 +0000
commit2f3f2ae7f098376f535e5aa993c9eedc14e36f5d (patch)
treed919bda212744493a7b66c2e91a75455421d62cc /src/stores/RecipePreviewsStore.ts
parentUpgrade electron to '29.1.5' (diff)
downloadferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.gz
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.zst
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.zip
Upgrade node modules
Diffstat (limited to 'src/stores/RecipePreviewsStore.ts')
-rw-r--r--src/stores/RecipePreviewsStore.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/stores/RecipePreviewsStore.ts b/src/stores/RecipePreviewsStore.ts
index 1c95e6b54..f851f3203 100644
--- a/src/stores/RecipePreviewsStore.ts
+++ b/src/stores/RecipePreviewsStore.ts
@@ -1,14 +1,14 @@
1import { action, computed, makeObservable, observable } from 'mobx'; 1import { action, computed, makeObservable, observable } from 'mobx';
2 2
3import { Actions } from '../actions/lib/actions'; 3import type { Stores } from '../@types/stores.types';
4import { ApiInterface } from '../api'; 4import type { Actions } from '../actions/lib/actions';
5import Recipe from '../models/Recipe'; 5import type { ApiInterface } from '../api';
6import { Stores } from '../@types/stores.types'; 6import type Recipe from '../models/Recipe';
7 7
8import type RecipePreview from '../models/RecipePreview';
8import CachedRequest from './lib/CachedRequest'; 9import CachedRequest from './lib/CachedRequest';
9import Request from './lib/Request'; 10import Request from './lib/Request';
10import TypedStore from './lib/TypedStore'; 11import TypedStore from './lib/TypedStore';
11import RecipePreview from '../models/RecipePreview';
12 12
13export default class RecipePreviewsStore extends TypedStore { 13export default class RecipePreviewsStore extends TypedStore {
14 @observable allRecipePreviewsRequest = new CachedRequest( 14 @observable allRecipePreviewsRequest = new CachedRequest(