Skip to content

Commit

Permalink
Merge pull request #59 from hrspace-request-builder/fix/404
Browse files Browse the repository at this point in the history
Fix/404
  • Loading branch information
LedyBacer authored Mar 24, 2024
2 parents 60ba790 + b0594e3 commit ff24d53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect } from "react";
import { Route, Routes } from "react-router-dom";
import { useDispatch, useSelector } from "react-redux";
import NotFound404 from "./pages/not-found/not-found";
// import NotFound404 from "./pages/not-found/not-found";
import HomePage from "./pages/home-page/home-page";
import RequestBuilder from "./pages/request-builder/request-builder";
import GlobalRoute from "./components/global-route/global-route";
Expand Down Expand Up @@ -48,10 +48,10 @@ function App() {
/>
<Route path="/success" element={<Success />} />
<Route path="/failure" element={<FailureWindow />} />
<Route path="/404" element={<Window404 />} />
{/* <Route path="/404" element={<Window404 />} /> */}
{/* <Route path="/pay" element={}/> */}

<Route path="*" element={<NotFound404 />} />
<Route path="*" element={<Window404 />} />
</Route>
</Routes>
)}
Expand Down

0 comments on commit ff24d53

Please sign in to comment.