Files
fusion/.changeset/fix-comments-duplication.md
gsxdsm b32a597448 fix(FN-743): prevent duplicate comments from steeringComments merge in rowToTask
- Stop merging steeringComments into comments array in rowToTask to prevent duplication
- Add regression tests verifying comments and steeringComments remain separate
- Add changeset for the comments deduplication fix
2026-04-02 20:17:01 -07:00

6 lines
341 B
Markdown

---
"@gsxdsm/fusion": patch
---
Fix data corruption where steering comments duplicated in the comments field on every read-write cycle. The `rowToTask()` merge of `steeringComments` into `comments` was redundant since `addSteeringComment()` already writes to both columns. Also adds id-based deduplication to recover from prior corruption.