Two requests fixed

This commit is contained in:
Daniel Weissmall 2022-11-14 12:27:05 +03:00
parent e20831fbfc
commit d324718646

View File

@ -25,7 +25,6 @@ if (!rootElement) throw new Error("Failed to find the root element");
const root = ReactDOM.createRoot(rootElement);
root.render(
<Provider store={store}>
<React.StrictMode>
<BrowserRouter>
<Routes>
<Route path="/" element={<App />} />
@ -46,7 +45,6 @@ root.render(
<Route path="/*" element={<NotFound />}></Route>
</Routes>
</BrowserRouter>
</React.StrictMode>
</Provider>
);