In Helpers.tsx, the NewlineText function uses array index as the key when mapping text lines. This causes React reconciliation issues when text changes. Replace array indices with stable, unique keys.
Hint: Consider using the text content itself or a hash of content as the key.
In Helpers.tsx, the NewlineText function uses array index as the key when mapping text lines. This causes React reconciliation issues when text changes. Replace array indices with stable, unique keys.
Hint: Consider using the text content itself or a hash of content as the key.