Update stateManager.js
Browse files- 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 |
-
|
| 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 |
|