Open Maelstromeous opened 2 hours ago
src/utils/factory-management/mocks/mockRecipes.ts:226:7 - error TS2322: Type 'string' is not assignable to type 'number'.
226 power: '1.5',
~~~~~
src/interfaces/Recipe.ts:15:5
15 power: number;
~~~~~
The expected type comes from property 'power' which is declared here on type '{ name: string; power: number; }'
As a result of #40, we need to also correct the data in the parser to also be a number for consistency's sake.