diff --git a/src/generators/server-side-rendering/visitors/Element.ts b/src/generators/server-side-rendering/visitors/Element.ts index d0cb572d74..bd0f8a0baf 100644 --- a/src/generators/server-side-rendering/visitors/Element.ts +++ b/src/generators/server-side-rendering/visitors/Element.ts @@ -65,7 +65,7 @@ export default function visitElement( if (attribute.type !== 'Attribute') return; if (attribute.name === 'value' && node.name === 'textarea') { - textareaContents = stringifyAttributeValue(block, attribute.value); + textareaContents = stringifyAttributeValue(block, attribute.chunks); } else if (attribute.isTrue) { openingTag += ` ${attribute.name}`; } else if (