Skip to content

Commit

Permalink
Don't forget default state
Browse files Browse the repository at this point in the history
  • Loading branch information
Pelsin committed Jan 2, 2025
1 parent 3a93a48 commit 57e33a0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions www/src/Store/useSystemStats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,14 @@ const INITIAL_STATE: State = {
fileName: '',
},
memoryReport: {
totalFlash: 0,
usedFlash: 0,
percentageFlash: 0,
percentageHeap: 0,
physicalFlash: 0,
staticAllocs: 0,
totalFlash: 0,
totalHeap: 0,
usedFlash: 0,
usedHeap: 0,
percentageFlash: 0,
percentageHeap: 0,
},
loading: false,
error: false,
Expand Down

0 comments on commit 57e33a0

Please sign in to comment.