From 2440e6642d0d5e088144aefed981203df07a2c2e Mon Sep 17 00:00:00 2001 From: Ryderjj89 Date: Sun, 28 Sep 2025 22:08:20 -0400 Subject: [PATCH] Fixed NLT TypeScript compilation error - Updated handleVersionSelect function in App.tsx to accept 'nlt' type - Resolved TS2322 compilation error for NLT in version selector - NLT can now be selected from UI and compilation succeeds NLT is fully functional in the application! --- frontend/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 8e103c62..ce44c5a4 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -261,7 +261,7 @@ function App() { // Component for the version selection page (root) const VersionPage = () => { - const handleVersionSelect = (version: 'esv' | 'nkjv') => { + const handleVersionSelect = (version: 'esv' | 'nkjv' | 'nlt') => { navigate(`/version/${version}`); };