Explorar el Código

Fix Ingredient property name

Tatiana Inama hace 6 años
padre
commit
80cf480c57
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      ktchn/src/recipes/model.ts

+ 1 - 1
ktchn/src/recipes/model.ts

@@ -11,7 +11,7 @@ export interface IIngredient {
   quantity: number;
   unit: string;
   state?: string;
-  note?: string;
+  notes?: string;
   _original?: string;
 }