diff --git a/src/App.tsx b/src/App.tsx index 477a123..1eacb67 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -22,7 +22,7 @@ function App() { } /> } /> } /> - } /> {/* Privacy Policy Route */} + } /> diff --git a/tsconfig.app.json b/tsconfig.app.json index f0a2350..5cd2b00 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -18,7 +18,11 @@ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + + /* Other options */ + "esModuleInterop": true, // Optional but recommended + "types": ["react", "react-dom"] // Ensure React types are included }, "include": ["src"] }