everydaycats commited on
Commit
0df852d
·
verified ·
1 Parent(s): 2e4b248

Update stateManager.js

Browse files
Files changed (1) hide show
  1. stateManager.js +1 -1
stateManager.js CHANGED
@@ -33,7 +33,7 @@ export const StateManager = {
33
  // FLATTEN DB STRUCTURE -> MEMORY STRUCTURE
34
  const memoryObject = {
35
  ...dbData.info, // Title, stats, description
36
- // thumbnail: dbData.thumbnail || null,
37
  // State might be undefined if just created, so default it
38
  commandQueue: dbData.state?.commandQueue || [],
39
  workerHistory: dbData.state?.workerHistory || [],
 
33
  // FLATTEN DB STRUCTURE -> MEMORY STRUCTURE
34
  const memoryObject = {
35
  ...dbData.info, // Title, stats, description
36
+ thumbnail: dbData.thumbnail || null,
37
  // State might be undefined if just created, so default it
38
  commandQueue: dbData.state?.commandQueue || [],
39
  workerHistory: dbData.state?.workerHistory || [],