diff --git a/src/App.jsx b/src/App.jsx index 3c2c6fe..50142a4 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -550,6 +550,9 @@ export function renderVerseContent(content) { if (Array.isArray(content.content)) { return renderVerseContent(content.content); } + if (typeof content.text === 'string') { + return content.text; + } return ''; } return '';