diff --git a/src/App.jsx b/src/App.jsx index 3eadea5c..441f00d0 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -3,14 +3,14 @@ import { BrowserRouter as Router, Route, Routes, - Navigate, + Navigate } from "react-router-dom"; import { getNotification } from "@redux/outstaffingSlice"; import Auth from "./pages/Auth/Auth"; import CatalogSpecialists from "@pages/CatalogSpecialists/CatalogSpecialists"; -import { TrackerIntro } from "@pages/TrackerIntro/TrackerIntro" +import { TrackerIntro } from "@pages/TrackerIntro/TrackerIntro"; import { CompanyInfo } from "@pages/CompanyInfo/CompanyInfo"; import { TrackerAuth } from "@pages/TrackerAuth/TrackerAuth"; import { TrackerRegistration } from "@pages/TrackerRegistration/TrackerRegistration"; @@ -57,7 +57,7 @@ import "./assets/fonts/stylesheet.css"; import "bootstrap/dist/css/bootstrap.min.css"; const App = () => { - const notification = useSelector(getNotification) + const notification = useSelector(getNotification); return ( <> @@ -65,10 +65,22 @@ const App = () => { } /> } /> } /> - } /> + } + /> } /> - } /> - } /> + } + /> + } + /> } /> { } /> } /> } /> - } /> + } + /> } /> } /> - }/> + } /> } /> } /> } /> @@ -124,7 +140,11 @@ const App = () => { } /> } /> } /> - } /> + } + /> } /> } /> @@ -139,7 +159,6 @@ const App = () => { /> - } /> @@ -147,9 +166,7 @@ const App = () => { } /> - {notification.show && - - } + {notification.show && } ); };