everydaytok commited on
Commit
a7a7ca5
·
verified ·
1 Parent(s): 5fa1c4d

Update stateManager.js

Browse files
Files changed (1) hide show
  1. stateManager.js +2 -1
stateManager.js CHANGED
@@ -109,7 +109,8 @@ export const StateManager = {
109
  },
110
 
111
  getStatus: (projectId) => {
112
- return statusBuffers.get(projectId) || "Working...";
 
113
  },
114
 
115
  appendStream: (projectId, chunk) => {
 
109
  },
110
 
111
  getStatus: (projectId) => {
112
+ // FIX: Default to "Idle" instead of "Working..." to prevent plugin lockup
113
+ return statusBuffers.get(projectId) || "Idle";
114
  },
115
 
116
  appendStream: (projectId, chunk) => {