Removed double request

This commit is contained in:
Daniel Weissmall 2022-11-14 12:31:42 +03:00
parent 335218fdd9
commit 43bc96bdf6

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>
);