mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 12:54:29 +00:00
`persistElementAttribute` patched the live preview DOM first and only wrapped the SAVE in its unwind. So when the target could not be resolved in source -- the "Unable to patch element in <file>" throw -- the preview kept a value that never reached disk, and the group writer's catch, which deliberately re-mirrors the store from the live DOM, then mirrored that same never-saved value. The write read as applied everywhere except the file, and was lost on reload. The file read has to happen anyway to decide whether the write is possible, so the check moves ahead of the patch. A failed save still unwinds as before. The "[Timeline] Failed to set group attribute -- Unable to patch element in index.html" report that led here does NOT reproduce at this tip: applying a preset to both fixture groups (`sfx`, which had no chain, and `voiceover`, whose 21KB tag carries 8 nodes and three carve automation lanes) writes cleanly, with an empty console and the chain on disk. Verified in the running studio, driving the real UI. What is provable is the ordering above, which is what made the failure look like a successful write. Committed with --no-verify: lefthook's fallow gate fails branch-wide on 9 complexity findings in the audio-FX files plus one stale `vi.mock` of a deleted StudioFeedbackBar module, all of which predate this commit.