aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/RecipePreview.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-15 12:18:44 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-15 12:18:44 +0100
commit7d8a47876569c0a80195f9ddea570e967e972b57 (patch)
tree8a603a974d01e967978e306b83c74bc7a14277d2 /src/models/RecipePreview.js
parent5.0.0 beta.18 (diff)
downloadferdium-app-7d8a47876569c0a80195f9ddea570e967e972b57.tar.gz
ferdium-app-7d8a47876569c0a80195f9ddea570e967e972b57.tar.zst
ferdium-app-7d8a47876569c0a80195f9ddea570e967e972b57.zip
Remove flow types
Diffstat (limited to 'src/models/RecipePreview.js')
-rw-r--r--src/models/RecipePreview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/models/RecipePreview.js b/src/models/RecipePreview.js
index 525a5c4b5..7470d757a 100644
--- a/src/models/RecipePreview.js
+++ b/src/models/RecipePreview.js
@@ -1,10 +1,10 @@
1// @flow 1// @flow
2 2
3export default class RecipePreview { 3export default class RecipePreview {
4 id: string = ''; 4 id = '';
5 name: string = ''; 5 name = '';
6 icon: string = ''; // TODO: check if this isn't replaced by `icons` 6 icon = ''; // TODO: check if this isn't replaced by `icons`
7 featured: bool = false; 7 featured = false;
8 8
9 constructor(data) { 9 constructor(data) {
10 if (!data.id) { 10 if (!data.id) {