diff --git a/frontend/src/components/BibleReader.tsx b/frontend/src/components/BibleReader.tsx index 5cd1248d..09c65b57 100644 --- a/frontend/src/components/BibleReader.tsx +++ b/frontend/src/components/BibleReader.tsx @@ -213,8 +213,8 @@ const BibleReader: React.FC = ({ book, chapter, onBack, format // Skip empty lines if (!line) continue; - // Check if line starts with verse number (e.g., "1 ", "2 ", etc.) - const verseMatch = line.match(/^(\d+)\s+(.+)$/); + // Check if line starts with verse number (e.g., "1. ", "2. ", etc.) + const verseMatch = line.match(/^(\d+)\.\s+(.+)$/); if (verseMatch) { const verseNumber = verseMatch[1]; const verseText = verseMatch[2];