everydaytok commited on
Commit
cbd6426
·
verified ·
1 Parent(s): fa6a3b0

Update stateManager.js

Browse files
Files changed (1) hide show
  1. stateManager.js +2 -1
stateManager.js CHANGED
@@ -225,11 +225,12 @@ export const StateManager = {
225
  if (infoError) console.error("[DB ERROR] Update Project Info failed:", infoError.message);
226
 
227
  // 2. Try updating root column for sorting
228
- try {
229
  await supabase.from('projects').update({ updated_at: now }).eq('id', projectId);
230
  } catch (e) {
231
  // Ignore if column doesn't exist
232
  }
 
233
  }
234
  },
235
 
 
225
  if (infoError) console.error("[DB ERROR] Update Project Info failed:", infoError.message);
226
 
227
  // 2. Try updating root column for sorting
228
+ /* try {
229
  await supabase.from('projects').update({ updated_at: now }).eq('id', projectId);
230
  } catch (e) {
231
  // Ignore if column doesn't exist
232
  }
233
+ */
234
  }
235
  },
236