aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/communityRecipes/store.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/communityRecipes/store.ts')
-rw-r--r--src/features/communityRecipes/store.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/features/communityRecipes/store.ts b/src/features/communityRecipes/store.ts
index a8d358ba0..c7a51c311 100644
--- a/src/features/communityRecipes/store.ts
+++ b/src/features/communityRecipes/store.ts
@@ -26,7 +26,7 @@ export class CommunityRecipesStore extends FeatureStore {
26 (recipePreview: { isDevRecipe: boolean; author: any[] }) => { 26 (recipePreview: { isDevRecipe: boolean; author: any[] }) => {
27 // TODO: Need to figure out if this is even necessary/used 27 // TODO: Need to figure out if this is even necessary/used
28 recipePreview.isDevRecipe = !!recipePreview.author.some( 28 recipePreview.isDevRecipe = !!recipePreview.author.some(
29 (author: { email: any }) => 29 (author: { email: string }) =>
30 author.email === this.stores.user.data.email, 30 author.email === this.stores.user.data.email,
31 ); 31 );
32 32