From 1733df7879403a2bf86d9ce66ed2e303b2684d23 Mon Sep 17 00:00:00 2001 From: nmemmert Date: Mon, 15 Jun 2026 08:27:11 -0400 Subject: [PATCH] Fix missing verse text for poetic OT content (Psalms etc.) --- src/App.jsx | 3 +++ 1 file changed, 3 insertions(+) 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 '';