Shafiqul Islam Shuvo
Shafiqul Islam Shuvo
The following line in **Balance** component: `const balance = amounts.reduce((acc, amount) => acc + amount).toFixed(2);` throws this error if the **transactions** list is empty: > TypeError: Reduce of empty array...
## I get this error whenever I try to type something inside fields.  ## And I found a solution: inside **`App.js`** file, if we replace the following line: `const...
The initial value for `cateogryId` was missing in the `EventForm` when updating an event. 