From ed2e034b12b15c5b4ac638e6b89a4ee9a7ed5012 Mon Sep 17 00:00:00 2001 From: Nathanaƫl Houn Date: Sun, 15 May 2022 23:42:36 +0200 Subject: fix: revert "Typescript conversion" (#153) This reverts commit 8b1bfc356c3182c481394251f3ceeb902f2baec3. --- src/models/RecipePreview.ts | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/models') diff --git a/src/models/RecipePreview.ts b/src/models/RecipePreview.ts index 53dd18f2c..fb8cb3e3e 100644 --- a/src/models/RecipePreview.ts +++ b/src/models/RecipePreview.ts @@ -4,7 +4,6 @@ interface IRecipePreview { icon: string; featured: boolean; aliases: string[]; - isDevRecipe: boolean; } export default class RecipePreview { @@ -18,8 +17,6 @@ export default class RecipePreview { aliases: string[] = []; - isDevRecipe: boolean = false; - constructor(data: IRecipePreview) { if (!data) { throw new Error('RecipePreview config not valid'); -- cgit v1.2.3-54-g00ecf