angular · angular/NG0600
NG0600
Writing to signals not allowed in computed or effect
A signal was written to inside a computed() or effect() function without using untracked(). Computed expressions and effects must be side-effect-free with respect to signal writes; use untracked() or move the write outside the reactive context.