diff --git a/frontend/src/components/SearchComponent.tsx b/frontend/src/components/SearchComponent.tsx index 7037b357..e1bb6941 100644 --- a/frontend/src/components/SearchComponent.tsx +++ b/frontend/src/components/SearchComponent.tsx @@ -236,6 +236,11 @@ const SearchComponent: React.FC = ({ Chapter {result.chapter} Verse {result.verse} + {(result as any).searchVersion && ( + + {(result as any).searchVersion.toUpperCase()} + + )} {/* Verse Text */} @@ -276,7 +281,7 @@ const SearchComponent: React.FC = ({ {/* Footer */} {results.length > 0 && (
- Found {results.length} result{results.length !== 1 ? 's' : ''} for "{query}" in {selectedVersion.toUpperCase()} Bible + Found {results.length} result{results.length !== 1 ? 's' : ''} for "{query}" {selectedVersion === 'all' ? 'in all bibles' : `in the ${selectedVersion.toUpperCase()} Bible`}
)}