From cd7578cb8d3208fcbe0b411fa696d94b3087001b Mon Sep 17 00:00:00 2001 From: Bhavik Jain Date: Sat, 13 Dec 2025 17:59:44 +0530 Subject: [PATCH] fix: enable React Router v7 future flags --- frontend/src/App.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 8aec6768..55c97fe7 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1,16 +1,21 @@ import { HomePage } from './components/HomePage'; import './App.css'; -import { BrowserRouter as Router, Route, Routes } from 'react-router-dom'; +import { BrowserRouter, Route, Routes } from 'react-router-dom'; import { LandingPage } from './components/LandingPage'; function App() { return ( - + } /> } /> - + ); }